dotfiles/.config/polybar/launch.sh

21 lines
347 B
Bash
Raw Normal View History

2018-06-11 19:22:15 +00:00
#!/usr/bin/env 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
2019-02-05 19:31:53 +00:00
intern=eDP-1
extern=HDMI-1
if xrandr | grep "$extern disconnected"; then
m=$intern
else
m=$extern
fi
MONITOR=$m polybar default &