Skip to content

Instantly share code, notes, and snippets.

@mrwm
Created February 10, 2016 06:19
Show Gist options
  • Save mrwm/d0348e1333c3a59e40ba to your computer and use it in GitHub Desktop.
Save mrwm/d0348e1333c3a59e40ba to your computer and use it in GitHub Desktop.
Make a mac say "balls" every now and then...
# Credit: https://www.reddit.com/r/AskReddit/comments/44tard/what_was_a_loophole_that_you_found_and_exploited/czt5wl8
while true
do
sleep $[RANDOM%3600+1]
osascript -e "set volume 10"
say "balls"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment