Created
January 23, 2026 08:57
-
-
Save kostyay/ad0a8182c437899ff838f23d8ca3fa3a to your computer and use it in GitHub Desktop.
Claude Code notifications
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Add this to your settings.json | |
| // brew install terminal-notifier | |
| { | |
| "hooks": { | |
| "Notification": [ | |
| { | |
| "matcher": "", | |
| "hooks": [ | |
| { | |
| "type": "command", | |
| "command": "afplay /System/Library/Sounds/Glass.aiff" | |
| }, | |
| { | |
| "type": "command", | |
| "command": "terminal-notifier -title \"🔔 Claude Code\" -message \"Claude needs your input\"" | |
| } | |
| ] | |
| } | |
| ], | |
| "Stop": [ | |
| { | |
| "matcher": "", | |
| "hooks": [ | |
| { | |
| "type": "command", | |
| "command": "afplay /System/Library/Sounds/Glass.aiff" | |
| }, | |
| { | |
| "type": "command", | |
| "command": "terminal-notifier -title \"✅ Claude Code\" -message \"The task has been completed\"" | |
| } | |
| ] | |
| } | |
| ] | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment