Files
gh-marcioaltoe-claude-craft…/hooks/audio_notification_hook.sh
2025-11-30 08:39:05 +08:00

5 lines
162 B
Bash
Executable File

#!/bin/bash
set -e
# bash wrapper used to run python in background
cat | python3 "${CLAUDE_PLUGIN_ROOT}/hooks/audio_notification_hook.py" >/dev/null 2>&1 &
exit 0