-
-
Save fbiville/5599833 to your computer and use it in GitHub Desktop.
Send notification after your build is done.
Example (with oh-my-zsh plugin alias): xn mvnci
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/zsh | |
source /home/fbiville/.zshrc | |
if [[ -z "$@" ]]; then | |
echo "ERROR: specify a nonempty command" | |
else | |
eval "$@"; notify-send "`pwd`: command finished" | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment