fix shitty bugs, fuck shell script they piss me off

This commit is contained in:
William Bell
2026-01-02 16:44:27 +00:00
parent eb2e6ee917
commit 5f4727aae3
4 changed files with 48 additions and 12 deletions

12
delete_stupid_loopback.sh Executable file
View File

@@ -0,0 +1,12 @@
#!/usr/bin/env bash
# List all loaded modules
pactl list short modules | while read -r id name rest; do
# If module is a loopback, unload it
if [[ "$name" == "module-loopback" ]]; then
echo "Unloading loopback module $id"
pactl unload-module "$id"
fi
done
echo "All loopback modules removed."