dwt1--dotfiles/.config/herbstluftwm/panel.sh

18 lines
408 B
Bash
Raw Normal View History

2019-01-19 01:39:41 +00:00
#!/usr/bin/env bash
2019-01-15 21:27:01 +00:00
2019-01-19 01:39:41 +00:00
# Terminate already running bar instances
killall -q polybar
2019-01-15 21:27:01 +00:00
2019-01-19 01:39:41 +00:00
# Wait until the processes have been shut down
while pgrep -u $UID -x polybar >/dev/null; do sleep 1; done
2019-01-15 21:27:01 +00:00
2019-01-19 01:39:41 +00:00
if type "xrandr"; then
for m in $(xrandr --query | grep " connected" | cut -d" " -f1); do
2020-07-24 20:15:57 +00:00
MONITOR=$m polybar --reload mainbar-herbst &
2019-01-19 01:39:41 +00:00
done
else
2020-07-24 20:15:57 +00:00
polybar --reload mainbar-herbst &
2019-01-19 01:39:41 +00:00
fi
echo "Bars launched..."