Guest User

Untitled

a guest
Jan 21st, 2018
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. # run as:
  2. # g some long ass command
  3. #
  4. # it'll tell you when you can stop reading reddit and get back to work.
  5.  
  6. g() {
  7. $*
  8. osascript <<EOF
  9. on run argv
  10. tell application "GrowlHelperApp"
  11. register as application "fries" all notifications {"ding"} default notifications {"ding"} icon of application "GrowlHelperApp"
  12. notify with name "ding" title "ding" description "fries are done" application name "fries"
  13. end tell
  14. end run
  15. EOF
  16. }
Add Comment
Please, Sign In to add comment