add all the script needed (hopefully this means i dont need to even make anymore commits lol)

This commit is contained in:
William Bell
2026-01-02 15:25:09 +00:00
commit 0120c6b6b0
4 changed files with 93 additions and 0 deletions

10
stop_soundboard.sh Executable file
View File

@@ -0,0 +1,10 @@
#!/usr/bin/env bash
STATE="$HOME/.soundboard"
for f in "$STATE"/*.id; do
pactl unload-module "$(cat "$f")" 2>/dev/null || true
rm -f "$f"
done
echo "Soundboard stopped."