blob: 1c0ac10f28097a0e5226c32c1462b0c46f870627 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#!/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 bar
polybar top &
#polybar bottom &
#polybar left &
#polybar top_external &
#sleep 5 && xdo raise -N "polybar-bottom_LVDS-1" &
if [[ $(xrandr -q | grep 'HDMI-1 connected') ]]: then
polybar top_external &
fi
|