[Polybar] Hackish script to get front screen

master
Quentin Duchemin 2025-01-01 20:35:19 +01:00
parent b8b265b8c2
commit 8d0d94a854
1 changed files with 1 additions and 1 deletions
.config/polybar/scripts

View File

@ -3,7 +3,7 @@ source ~/.config/polybar/.env
names=("chostybottombar" "chostytopbar")
killall -q polybar
while pgrep -u $UID -x polybar >/dev/null; do sleep 1; done
monitor=$(xrandr --query | grep " connected" | grep "primary" | cut -d" " -f1)
monitor=$(xrandr --query | grep " connected" | cut -d" " -f1 | head -1)
for name in ${names[@]}; do
MONITOR=${monitor} polybar -q --reload ${name} &
done