diff options
| -rwxr-xr-x | bin/__claude-code-notify | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/bin/__claude-code-notify b/bin/__claude-code-notify index 60d3454..c499861 100755 --- a/bin/__claude-code-notify +++ b/bin/__claude-code-notify @@ -1,6 +1,11 @@ #!/usr/bin/env bash message="$(jq -r '.message // "Task completed"')" + +if [ "$message" = "Claude is waiting for your input" ]; then + exit # it's annoying +fi + if [ "$(uname)" = "Darwin" ]; then if [ "$1" = "Stop" ]; then sound=Glass |
