14 lines
305 B
Bash
Executable file
14 lines
305 B
Bash
Executable file
#!/bin/bash
|
|
|
|
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 qbar &
|
|
done
|
|
else
|
|
polybar --reload qbar &
|
|
fi
|