notification

star 363

Show macOS system notifications with title, body, and optional sound. Use for alerts, reminders, or status updates.

mikeyobrien By mikeyobrien schedule Updated 2/5/2026

name: notification description: Show macOS system notifications with title, body, and optional sound. Use for alerts, reminders, or status updates.

System Notifications

Basic notification

osascript -e 'display notification "Message body" with title "Title"'

With subtitle

osascript -e 'display notification "Body" with title "Title" subtitle "Subtitle"'

With sound

osascript -e 'display notification "Body" with title "Title" sound name "default"'

Common sound names

  • default — system default
  • Basso, Blow, Bottle, Frog, Funk, Glass, Hero, Morse, Ping, Pop, Purr, Sosumi, Submarine, Tink

Richer notifications (optional)

For persistent or actionable notifications, install terminal-notifier:

brew install terminal-notifier
terminal-notifier -title "Title" -message "Body"
terminal-notifier -title "Title" -message "Body" -sound default
terminal-notifier -title "Title" -message "Body" -open "https://example.com"
terminal-notifier -title "Title" -message "Body" -group "mynotif"  # updatable by group
terminal-notifier -remove "mynotif"  # remove by group
Install via CLI
npx skills add https://github.com/mikeyobrien/rho --skill notification
Repository Details
star Stars 363
call_split Forks 30
navigation Branch main
article Path SKILL.md
More from Creator