polybar: Handle multi monitor setup nicely

This commit is contained in:
Robert Kmiec
2019-10-08 16:21:50 +02:00
parent 032f4c6e7a
commit 5d65be0876
2 changed files with 8 additions and 2 deletions

View File

@@ -10,7 +10,7 @@ secondary = #e60053
alert = #bd2c40
[bar/example]
;monitor = ${env:MONITOR:HDMI-1}
monitor = ${env:MONITOR:}
width = 100%
height = 15
;offset-x = 1%

View File

@@ -7,6 +7,12 @@ killall -q polybar
while pgrep -u $UID -x polybar >/dev/null; do sleep 1; done
# Launch Polybar, using default config location ~/.config/polybar/config
polybar example &
if type "xrandr"; then
for m in $(xrandr --query | grep " connected" | cut -d" " -f1); do
MONITOR=$m polybar --reload example &
done
else
polybar --reload example &
fi
echo "Polybar launched..."