Compare commits

...

7 Commits

Author SHA1 Message Date
Storm Dragon
00c5516851 Properly handle control+c. 2023-08-26 18:14:26 -04:00
Storm Dragon
e2fba47217 Violin added. 2023-08-26 15:56:21 -04:00
bba30f50bd Added mac compatibility, switched shabang to use /usr/bin/env bash 2020-12-11 17:20:48 -09:00
Storm Dragon
9e34e1afd1 Updated readme. 2019-11-23 18:45:32 -05:00
Storm Dragon
f037c47bd2 Minor updates. 2018-12-31 11:19:12 -05:00
c0936c3446 Added ukulele-half-down 2018-12-31 06:52:29 -09:00
Storm Dragon
d88b5286dc Now shows the note you are playing, but takes a bit longer to switch to the next one. 2018-12-01 12:33:05 -05:00
2 changed files with 8 additions and 3 deletions

View File

@ -2,4 +2,5 @@
A guitar tuner written in bash.
To extend, add new tunings to the array. More are coming soon. I may also add other instruments such as the mandolin
Want to support my work? Check out my [Liberapay page](https://liberapay.com/stormdragon2976), or my membership options on [Patreon](https://patreon.com/stormdragon2976).
<script src="https://liberapay.com/stormdragon2976/widgets/button.js"></script>
<noscript><a href="https://liberapay.com/stormdragon2976/donate"><img alt="Donate using Liberapay" src="https://liberapay.com/assets/widgets/donate.svg"></a></noscript>

View File

@ -1,8 +1,10 @@
#!/bin/bash
#!/usr/bin/env bash
# Written by Storm Dragon https://social.stormdragon.tk/storm
# Released under the terms of the WTFPL License http://wtfpl.net
trap 'exit 0' SIGINT
declare -A tuning=(
# Dropped 1 step.
[6d]="D2 G2 C3 F3 A3 D4"
@ -28,6 +30,8 @@ declare -A tuning=(
[mandolin]="G3 D4 A4 E5"
#Ukulele
[ukulele]="G4 C4 E4 A4"
[ukulele-half-step-down]="F#4 B3 D#4 G#4"
[violin]="G3 D4 A4 E5"
#lap Steel 6 String C6
[steel-C6]="C3 E3 G3 A3 C4 E4"
#Nick Drake Tuning
@ -83,7 +87,7 @@ for i in ${tuning[$1]} ; do
notePID="$!"
read -sN1 -t $timeout continue
flush_keys
done
done | dialog --progressbox "${i//[[:digit:]]/}" 0 0
IFS="$ifs"
done
# Kill the final process when the program exits.