Created
December 17, 2018 19:14
-
-
Save blrB/6127948af0b1c8a866cbe368f38f49e0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# eye rest timer | |
eye() { | |
for i in {1..$1} | |
do | |
echo "$i time" | |
sleep 30 | |
(speaker-test -t sine -f 500 )& pid=$! ; sleep 0.1s ; kill -9 $pid | |
sleep 30 | |
(speaker-test -t sine -f 1000 )& pid=$! ; sleep 0.1s ; kill -9 $pid | |
done | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment