Stats
Actions
Tags
From tailscale-notify
Sends a desktop notification via notify-send when Claude Code is waiting for user input on Linux.
1 event · 1 hook
Where this hook configuration is defined
Defined in hooks/hooks.json
Event handlers and matchers — expand Raw Configuration for the full JSON
input=$(cat); if [ -z "$TAILSCALE_NOTIFY_URL" ]; then exit 0; fi; if ioreg -n Root -d1 | grep -q '"CGSSessionScreenIsLocked" = Yes'; then echo "$input" | jq -r '.message' | curl -s --max-time 5 -X POST "${TAILSCALE_NOTIFY_URL}/$(hostname -s | tr '[:upper:]' '[:lower:]')" -H 'Content-Type: text/plain' -d @-; fi || true10msnpx claudepluginhub sjungling/sjungling-claude-plugins --plugin tailscale-notify