1
0
mirror of https://github.com/balkian/dotfiles.git synced 2024-09-28 22:21:42 +00:00
dotfiles/scripts/.bin/polybar.sh

14 lines
312 B
Bash
Raw Normal View History

2018-09-12 17:01:24 +00:00
#!/bin/sh
# 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 m in $(polybar --list-monitors | cut -d":" -f1); do
MONITOR=$m polybar --reload main &
done
2018-09-12 17:01:24 +00:00
polybar --reload main &
fi