dotfiles/.config/polybar/launch.sh

16 lines
432 B
Bash
Raw Normal View History

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
# Launch Polybar
for m in $(polybar --list-monitors | cut -d":" -f1); do
# 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..."