From 66c4724aaa8987dac0112bec8452ab324add79e6 Mon Sep 17 00:00:00 2001 From: nsfisis Date: Mon, 8 Jun 2026 14:18:08 +0900 Subject: claude: suppress notification "Claude is waiting for your input" --- bin/__claude-code-notify | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'bin/__claude-code-notify') 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 -- cgit v1.3.1