Skip to content

Instantly share code, notes, and snippets.

@david-jarman
Created January 9, 2026 23:27
Show Gist options
  • Select an option

  • Save david-jarman/27d6eec0ec0114f545d5dff84152a9ed to your computer and use it in GitHub Desktop.

Select an option

Save david-jarman/27d6eec0ec0114f545d5dff84152a9ed to your computer and use it in GitHub Desktop.
{
"model": "claude-opus-4-5",
"enabledPlugins": {
"csharp-lsp@claude-plugins-official": true,
"commit-commands@claude-plugins-official": true,
"microsoft-docs@microsoft-docs-marketplace": true,
"code-simplifier@claude-plugins-official": true
},
"hooks": {
"Notification": [
{
"matcher": "permission_prompt",
"hooks": [
{
"type": "command",
"command": "input=$(cat) && powershell.exe -NoProfile -Command \"Import-Module BurntToast; New-BurntToastNotification -Text 'Claude Code Notification', '$(echo \"$input\" | jq -r '.message')'\""
}
]
},
{
"matcher": "idle_prompt",
"hooks": [
{
"type": "command",
"command": "input=$(cat) && powershell.exe -NoProfile -Command \"Import-Module BurntToast; New-BurntToastNotification -Text 'Claude Code Notification', '$(echo \"$input\" | jq -r '.message')'\""
}
]
}
],
"Stop": [
{
"matcher": "",
"hooks": [
{
"type": "command",
"command": "powershell.exe -NoProfile -Command \"Import-Module BurntToast; New-BurntToastNotification -Text 'Claude Code', 'Claude: DONE'\""
}
]
}
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment