Skip to content

Instantly share code, notes, and snippets.

@robbyrussell
Created March 2, 2010 20:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save robbyrussell/319859 to your computer and use it in GitHub Desktop.
Save robbyrussell/319859 to your computer and use it in GitHub Desktop.
# add this to your .oh-my-zsh config for fun in the sun
function chirp() {
growlnotify -t "Chirp Chirp" -m $1;
say -v "Bells" "chirp. chirp. ${1}";
}
# then when you are running a big task and want to be reminded when it finishes (so you don't have to keep checking on it...)
rake your-rake-command && chirp "finished running the command that you were waiting on"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment