add batman beyond config

This commit is contained in:
2026-05-16 13:01:39 -04:00
parent 2bd06da3ed
commit 1b3849ccd3
38 changed files with 3077 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
#!/usr/bin/env sh
# Wait for audio
until pactl info >/dev/null 2>&1; do
sleep 0.5
done
# Terminate already running bar instances
killall -q polybar
# Wait until the processes have been shut down
while pgrep -u $UID -x polybar >/dev/null; do sleep 1; done
# for multimonitor
if type "xrandr"; then
for m in $(xrandr --query | grep " connected" | cut -d" " -f1); do
MONITOR=$m polybar --reload example & disown
done
else
polybar --reload example & disown
fi