Changed file extension back

This commit is contained in:
Wryn Wagner
2019-07-18 17:52:16 -06:00
parent cb67fb7efa
commit 0146f199de
7 changed files with 0 additions and 0 deletions

14
bash/osx/osxfun Normal file
View File

@ -0,0 +1,14 @@
#!/bin/bash
function planktimer() {
# dependencies: 'say' 'termdown'
while true;
do
termdown 1h30m;
clear;
figlet "Plank Time" | lolcat;
say -v $(say -v ? | sed -n "/en_/p" | sed "s/ .*//" | shuf -n 1) "plank time";
read -n 1;
termdown 65;
say -v $(say -v ? | sed -n "/en_/p" | sed "s/ .*//" | shuf -n 1) "done";
done
}