Skip to content

Instantly share code, notes, and snippets.

@rhowardiv
Created October 21, 2014 13:04
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 rhowardiv/61b1b333c0f94453c083 to your computer and use it in GitHub Desktop.
Save rhowardiv/61b1b333c0f94453c083 to your computer and use it in GitHub Desktop.
Jake: run make and get a notification with the results from Jake the Dog (you provide jake.png...)
#!/bin/bash
[ -t 1 ]
ISTTY=$?
notify-send -i ~/Pictures/jake.png MAKE "$( (make $@ && echo "Good.") 2>&1 | ( if [[ $ISTTY -eq 0 ]]; then tee /dev/tty; else cat; fi ) )"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment