Skip to content

Instantly share code, notes, and snippets.

@davidosomething
Created December 7, 2013 02:41
Show Gist options
  • Save davidosomething/7836645 to your computer and use it in GitHub Desktop.
Save davidosomething/7836645 to your computer and use it in GitHub Desktop.
creepy messages
##
# creepy messages on afk
# http://www.reddit.com/r/apple/comments/1s902t/type_this_into_your_terminal_to_have_funannoy/cdvcgsv
afk() {
words=('please help me' 'i am so alone' 'i am lonely' 'let me out' 'i must feed' 'it puts the lotion' 'my precious');
while [ 1 = 1 ]; do
say "${words[$[ $[ RANDOM % ${#words[@]} ]]]}" -v Whisper -r 2
sleep 100
done
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment