Created
October 24, 2013 19:43
-
-
Save incanus/7143703 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
gwd() | |
{ | |
$* | |
growlnotify "${1} is done" -m '…' -s | |
} | |
bwd() | |
{ | |
$* | |
printf \\a | |
} | |
nwd() | |
{ | |
$* | |
terminal-notifier -message "\`${1}\` is done" -activate com.apple.Terminal -sender com.apple.Terminal | |
} |
Growl when done, beep when done, and notify when done.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Use this like so:
Then you get a Notification Center alert when it completes. If you click on it, Terminal activates.