Skip to content

Instantly share code, notes, and snippets.

@NikLP
Last active July 24, 2026 13:53
Show Gist options
  • Select an option

  • Save NikLP/cd5f289fd2391795330d43505678bc69 to your computer and use it in GitHub Desktop.

Select an option

Save NikLP/cd5f289fd2391795330d43505678bc69 to your computer and use it in GitHub Desktop.
VSCode Claude pings
// 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