5 lines
162 B
Bash
Executable File
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 |