Files
dotfiles/.config/polybar/launch.sh
T
2021-03-22 16:02:35 +01:00

18 lines
463 B
Bash
Executable File

#!/usr/bin/env sh
## Add this to your wm startup file.
# 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
if type "xrandr"; then
for m in $(xrandr --query | grep " connected" | cut -d" " -f1); do
MONITOR=$m polybar --reload -c ~/.config/polybar/config.ini main &
done
else
polybar --reload -c ~/.config/polybar/config.ini main &
fi