Skip to content

Instantly share code, notes, and snippets.

@jaygooby
Created August 18, 2026 12:15
Show Gist options
  • Select an option

  • Save jaygooby/b55a3af0a37b30395785615303e2affb to your computer and use it in GitHub Desktop.

Select an option

Save jaygooby/b55a3af0a37b30395785615303e2affb to your computer and use it in GitHub Desktop.
A simple macOS cli for a dismissible notification
#!/bin/bash
#
# Usage:
# ./notify
# ./notify "Hi"
# ./notify "Finished" "Your thing is done"
set -e
TITLE="${1:-Yo!}"
MESSAGE="${2:-Your thing completed}"
osascript -e "display alert \"$TITLE\" message \"$MESSAGE\""
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment