Last active
July 24, 2026 13:53
-
-
Save NikLP/cd5f289fd2391795330d43505678bc69 to your computer and use it in GitHub Desktop.
VSCode Claude pings
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 the "hooks" section of your ~/.claude/settings.json for audible notifications when you're "wanted" | |
| // This version for Ubuntu (Linux) but you can tweak the commands for your system :) | |
| "Notification": [ | |
| { | |
| "hooks": [ | |
| { | |
| "type": "command", | |
| "command": "pw-play /usr/share/sounds/freedesktop/stereo/window-attention.oga" | |
| } | |
| ] | |
| } | |
| ], | |
| "PermissionRequest": [ | |
| { | |
| "hooks": [ | |
| { | |
| "type": "command", | |
| "command": "pw-play /usr/share/sounds/freedesktop/stereo/window-attention.oga" | |
| } | |
| ] | |
| } | |
| ], | |
| "Elicitation": [ | |
| { | |
| "hooks": [ | |
| { | |
| "type": "command", | |
| "command": "pw-play /usr/share/sounds/freedesktop/stereo/window-attention.oga" | |
| } | |
| ] | |
| } | |
| ], | |
| "Stop": [ | |
| { | |
| "hooks": [ | |
| { | |
| "type": "command", | |
| "command": "pw-play /usr/share/sounds/freedesktop/stereo/window-attention.oga" | |
| } | |
| ] | |
| } | |
| ] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment