From a7c28966f5c336fdb7955b3e5b5c0840c68099b1 Mon Sep 17 00:00:00 2001 From: Ayo Date: Mon, 9 Mar 2026 16:06:24 +0100 Subject: [PATCH] feat(display): do not set the resolution for the secondary monitor --- display.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/display.sh b/display.sh index 2d76cf2..143226a 100755 --- a/display.sh +++ b/display.sh @@ -45,7 +45,7 @@ function main() { echo "Setting dual display center" xrandr \ --output "$main" --auto --above "$secondary" \ - --output "$secondary" --primary --mode 1680x1050 + --output "$secondary" --primary ;; "ultra") echo "Setting single display mode (ultrawide)" @@ -60,7 +60,7 @@ function main() { ;; *) echo "Setting display to preferred size (1680x1050)" - xrandr --output "$secondary" --output "$secondary" --mode 1680x1050 + xrandr --output "$secondary" --output "$secondary" ;; esac return 0