21 lines
437 B
Bash
Raw Normal View History

2021-12-06 17:37:34 +01:00
#!/usr/bin/env bash
# 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
if type "xrandr"; then
for m in $(xrandr --query | grep " connected" | cut -d" " -f1); do
MONITOR=$m polybar --reload example &
done
else
polybar --reload example &
fi
# Launch bar1 and bar2
#polybar example &
echo "Bars launched..."