Stats
Actions
Tags
Help us improve
Share bugs, ideas, or general feedback.
From native-notifications
Sends desktop notifications on Claude Code stop and attention events using bash scripts.
2 events · 2 hooks
npx claudepluginhub openshift-eng/ai-helpers --plugin native-notificationsWhere this hook configuration is defined
Defined in hooks/hooks.json
Event handlers and matchers — expand Raw Configuration for the full JSON
if command -v osascript >/dev/null 2>&1; then osascript -e 'display notification "Claude finished your task" with title "✅ Claude Code"'; elif command -v notify-send >/dev/null 2>&1 && [ -n "${DISPLAY:-}${WAYLAND_DISPLAY:-}" ]; then notify-send '✅ Claude Code' 'Claude finished your task'; else printf '\a'; fiif command -v osascript >/dev/null 2>&1; then osascript -e 'display notification "Claude needs your input" with title "🔔 Claude Code"'; elif command -v notify-send >/dev/null 2>&1 && [ -n "${DISPLAY:-}${WAYLAND_DISPLAY:-}" ]; then notify-send '🔔 Claude Code' 'Claude needs your input'; else printf '\a'; fiShare bugs, ideas, or general feedback.