Skip to content

Instantly share code, notes, and snippets.

@JasonkayZK
Created July 15, 2025 07:13
Show Gist options
  • Select an option

  • Save JasonkayZK/d5c4e3adadf3478ded5896becf01f08c to your computer and use it in GitHub Desktop.

Select an option

Save JasonkayZK/d5c4e3adadf3478ded5896becf01f08c to your computer and use it in GitHub Desktop.
Send system notify on MacOS after execute command.
function notifyResult () {
if [ $? -eq 0 ]; then
osascript -e 'display notification "The command finished" 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