From b61a1cc1922d95d380a2aae910b41caf88ba87ca Mon Sep 17 00:00:00 2001 From: Christian Colglazier Date: Fri, 2 Sep 2022 20:26:55 -0400 Subject: [PATCH] Change polybar desktop --- scripts/desktop/polybar-start.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/desktop/polybar-start.sh b/scripts/desktop/polybar-start.sh index 39115a3..26e20ef 100755 --- a/scripts/desktop/polybar-start.sh +++ b/scripts/desktop/polybar-start.sh @@ -5,7 +5,7 @@ killall -q polybar while pgrep -x polybar >/dev/null; do sleep 0.1; done for monitor in $(xrandr -q | grep -e "\sconnected\s" | cut -d' ' -f1); do - if [ $monitor == 'DVI-D-0' ] || [ $monitor == 'LVDS-1' ]; then + if [ $monitor == 'DP-2' ] || [ $monitor == 'LVDS-1' ]; then MONITOR=$monitor polybar aqua & fi done