From d284f74f6bdaf8a510578cbcf243f8b24f34a6ea Mon Sep 17 00:00:00 2001 From: Ayo Date: Sat, 23 Aug 2025 13:23:19 +0200 Subject: [PATCH] feat(display): scripts for automating solo & dual monitor setups --- display.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/display.sh b/display.sh index 9bb2ce3..534f0be 100755 --- a/display.sh +++ b/display.sh @@ -18,7 +18,7 @@ elif [ $command = "small" ] || [ "$command" = "1280" ] || [ "$command" = "800" ] elif [ $command = "solo" ]; then xrandr --output "$extern" --off --output "$intern" --auto elif [ $command = "dual" ]; then - xrandr --output "$extern" --mode 1680x1050 --right-of "$intern" + xrandr --output "$extern" --primary --auto --left-of "$intern" --output "$intern" --mode 1680x1050 else xrandr --output "$intern" --mode 1680x1050 fi