Skip to content

Instantly share code, notes, and snippets.

@jespr
Created July 23, 2025 18:14
Show Gist options
  • Select an option

  • Save jespr/85f779b758035fbfb80c32695facb175 to your computer and use it in GitHub Desktop.

Select an option

Save jespr/85f779b758035fbfb80c32695facb175 to your computer and use it in GitHub Desktop.
Have Claude Code use terminal-notifier to create notifications when my attention is needed
// ~/.claude/settings.json
// brew install terminal-notifier
{
"hooks": {
"Notification": [
{
"hooks": [
{
"type": "command",
"command": "terminal-notifier -title \"Claude Code\" -message \"Waiting for your input\" -sound default"
}
]
}
],
"Stop": [
{
"hooks": [
{
"type": "command",
"command": "terminal-notifier -title \"Claude Code\" -message \"Claude has completed the task\" -sound default"
}
]
}
]
},
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment