Skip to content

Instantly share code, notes, and snippets.

@ompugao
Created July 30, 2014 13:43
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 ompugao/fbca9b280d226c328154 to your computer and use it in GitHub Desktop.
Save ompugao/fbca9b280d226c328154 to your computer and use it in GitHub Desktop.
build notification
function notify() {
if [ $? = 0 ] ; then
aplay $HOME/path/to/succeed.wav >/dev/null &
notify-send "成功しました!"
else
aplay $HOME/path/to/fail.wav >/dev/null &
notify-send "失敗しました..."
fi
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment