-
-
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...)
This file contains hidden or 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
#!/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