From 5d65be08760d77bc0814e6d937e921676b68a454 Mon Sep 17 00:00:00 2001 From: Robert Kmiec Date: Tue, 8 Oct 2019 16:21:50 +0200 Subject: [PATCH] polybar: Handle multi monitor setup nicely --- .config/polybar/config | 2 +- .local/usr/bin/polybar.sh | 8 +++++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/.config/polybar/config b/.config/polybar/config index 16da454..9aa7f6b 100644 --- a/.config/polybar/config +++ b/.config/polybar/config @@ -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% diff --git a/.local/usr/bin/polybar.sh b/.local/usr/bin/polybar.sh index 4c5d769..d0942b6 100755 --- a/.local/usr/bin/polybar.sh +++ b/.local/usr/bin/polybar.sh @@ -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..."