dotfiles/config/polybar/launch.sh

17 lines
332 B
Bash
Raw Normal View History

2017-07-02 20:06:24 +00:00
#!/usr/bin/env sh
# Terminate already running bar instances
killall -q polybar
# Wait until the processes have been shut down
while pgrep -x polybar >/dev/null; do sleep 1; done
# Launch bar for each display
polybar -m | cut -d':' -f1 | while read display
do
MONITOR=$display polybar example &
done
echo "Bars launched..."