Initial push.

This commit is contained in:
Storm Dragon
2018-05-09 16:04:59 -04:00
parent b3fcec3f81
commit 190cc98aa1
5 changed files with 68 additions and 1 deletions

View File

@ -37,11 +37,14 @@ eval play -q ${sequence} norm -5
sleep .5
unset guess
i=0
ifs="$IFS"
unset IFS
while [ -z "${guess}" ]; do
play -nqV0 synth .2 sq E4 pad .3 norm -5 &
read -sn1 -t .6 guess
read -sn1 -t .6 guess && guess=" "
((i++))
done
IFS="$ifs"
if [ $i -eq $length ]; then
echo "you win!"
else