Created
December 20, 2025 19:10
-
-
Save agamm/cf79d68d2fe1f2f61bce2042001849bd to your computer and use it in GitHub Desktop.
Claude code waiting for user input notification
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
| { | |
| "hooks": { | |
| "Stop": [ | |
| { | |
| "hooks": [ | |
| { | |
| "type": "command", | |
| "command": "osascript -e 'display notification \"Waiting...\" with title \"Claude Code\"'", | |
| "timeout": 35 | |
| } | |
| ] | |
| } | |
| ], | |
| "Notification": [ | |
| { | |
| "matcher": "idle_prompt", | |
| "hooks": [ | |
| { | |
| "type": "command", | |
| "command": "osascript -e 'display notification \"Waiting...\" with title \"Claude Code\"'", | |
| "timeout": 35 | |
| } | |
| ] | |
| }, | |
| { | |
| "matcher": "permission_prompt", | |
| "hooks": [ | |
| { | |
| "type": "command", | |
| "command": "osascript -e 'display notification \"Waiting...\" with title \"Claude Code\"'", | |
| "timeout": 35 | |
| } | |
| ] | |
| } | |
| ], | |
| "SessionEnd": [ | |
| { | |
| "hooks": [ | |
| { | |
| "type": "command", | |
| "command": "osascript -e 'display notification \"Waiting...\" with title \"Claude Code\"'", | |
| "timeout": 5 | |
| } | |
| ] | |
| } | |
| ] | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment