Last active
July 25, 2026 16:22
-
-
Save enimiste/548498e6980aaa9ead5c9cc0a3c55135 to your computer and use it in GitHub Desktop.
Claude Notification Settings on Macos
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
| { | |
| "preferredNotifChannel": "terminal_bell", | |
| "hooks": { | |
| "Notification": [ | |
| { | |
| "matcher": "idle_prompt|permission_prompt", | |
| "hooks": [ | |
| { "type": "command", "command": "nohup bash -c 'for i in 1 2 3; do afplay -v 4 /System/Library/Sounds/Ping.aiff; sleep 0.35; done' >/dev/null 2>&1 &" } | |
| ] | |
| } | |
| ], | |
| "Stop": [ | |
| { | |
| "hooks": [ | |
| { "type": "command", "command": "nohup bash -c 'for i in 1 2 3; do afplay -v 4 /System/Library/Sounds/Ping.aiff; sleep 0.35; done' >/dev/null 2>&1 &" } | |
| ] | |
| } | |
| ] | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment