Skip to content

Instantly share code, notes, and snippets.

@ChlorideCull
Created March 15, 2015 16:20
Show Gist options
  • Save ChlorideCull/a7e4f163c7209c1d4679 to your computer and use it in GitHub Desktop.
Save ChlorideCull/a7e4f163c7209c1d4679 to your computer and use it in GitHub Desktop.
#!/bin/sh
#http://imgur.com/gallery/fL7Saxw
words=("Please help me." "I am so alone." \
"To arms, my brothers" "Psssst" "Hey, Listen." \
"Kill all humans." "Don't ever leave me."\
"The hunger is overwelming" "Look over here" \
"Duck Duck Goose. You are it!")
#get a chance to step away
sleep 15
while [ 1 = 1 ]
do
osascript -e "set volume 9"
say "${words[$[RANDOM%${#words[@]}]]}" -v whisper -r 1.5
sleep 30
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment