first test

This commit is contained in:
cnst
2024-09-21 23:22:22 +02:00
parent c647cea072
commit e212239e8c
36 changed files with 624 additions and 240 deletions

View File

@@ -0,0 +1,9 @@
#!/usr/bin/env bash
if pgrep -f "pavucontrol" >/dev/null; then
pkill -f "pavucontrol"
else
if ! hyprctl dispatch exec pavucontrol; then
echo "Failed to launch Pavucontrol"
exit 1
fi
fi