diff options
| author | nsfisis <nsfisis@gmail.com> | 2026-06-08 14:18:08 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2026-06-08 14:18:08 +0900 |
| commit | 66c4724aaa8987dac0112bec8452ab324add79e6 (patch) | |
| tree | 13edf41ccaf81f2d1d484653c5900a4cd36c5bac | |
| parent | 052548bd1db7f78d998ca923dbf17ffc80df46a8 (diff) | |
| download | dotfiles-66c4724aaa8987dac0112bec8452ab324add79e6.tar.gz dotfiles-66c4724aaa8987dac0112bec8452ab324add79e6.tar.zst dotfiles-66c4724aaa8987dac0112bec8452ab324add79e6.zip | |
claude: suppress notification "Claude is waiting for your input"
| -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 |
