Skip to content

Instantly share code, notes, and snippets.

@napcs
Created December 13, 2018 22:05
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save napcs/8e640df0e8abfe047e6b8c048a14470e to your computer and use it in GitHub Desktop.
Save napcs/8e640df0e8abfe047e6b8c048a14470e to your computer and use it in GitHub Desktop.
notifyMe() {
if [ $? -eq 0 ]; then
osascript -e 'display notification "The command worked" with title "Success"'
else
osascript -e 'display notification "The command failed" with title "Failed"'
fi
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment