dotfiles/.config/polybar/launch.sh

13 lines
300 B
Bash
Raw Normal View History

2022-03-18 00:11:58 +01:00
#!/bin/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
# Launch the bar
for m in $(polybar --list-monitors | cut -d":" -f1); do
MONITOR=$m polybar --reload main &
done