Skip to content

Instantly share code, notes, and snippets.

@michbarsinai
Created December 16, 2025 20:16
Show Gist options
  • Select an option

  • Save michbarsinai/fe01de60fb91228eb531b0343afd0a96 to your computer and use it in GitHub Desktop.

Select an option

Save michbarsinai/fe01de60fb91228eb531b0343afd0a96 to your computer and use it in GitHub Desktop.
Mac OS: Send a, OS notification from the terminal.
#!/bin/zsh
# usage: osx-notify message [sub_title]
SUBTITLE="Script Notification"
if [ -n "$2" ]; then SUBTITLE=$2; fi
MESSAGE=$1
CODE="display notification \"osx-notify\" with title \"${MESSAGE}\" subtitle \"${SUBTITLE}\""
osascript -e $CODE
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment