2021-03-28 17:11:08 +02: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
|
|
|
|
|
|
|
|
while ! pgrep -x bspwm >/dev/null; do sleep 1; done
|
|
|
|
|
|
|
|
# Launch Polybar
|
|
|
|
for m in $(polybar --list-monitors | cut -d":" -f1); do
|
2021-07-30 11:46:56 +02:00
|
|
|
# MONITOR=$m polybar --reload top -c ~/.config/polybar/config.ini &
|
2021-03-28 17:11:08 +02:00
|
|
|
MONITOR=$m polybar --reload bottom -c ~/.config/polybar/config.ini &
|
|
|
|
done
|
|
|
|
|
|
|
|
echo "Polybar launched..."
|