From 654297dea5308e20b227ad73ba02039296b26945 Mon Sep 17 00:00:00 2001 From: Luke Smith Date: Sat, 3 Nov 2018 17:59:31 -0400 Subject: [PATCH] display switch update --- .scripts/displayselect | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.scripts/displayselect b/.scripts/displayselect index e68a912..e36d214 100755 --- a/.scripts/displayselect +++ b/.scripts/displayselect @@ -22,7 +22,7 @@ morescreen() { # If multi-monitor is selected and there are more than two screen multimon() { # Multi-monitor handler. case "$(echo "$screens" | wc -l)" in - 1) xrandr $(echo "$allposs" | awk '{print "--output", $1, "--auto"}' | tr '\n' ' ') ;; + 1) xrandr $(echo "$allposs" | awk '{print "--output", $1, "--off"}' | tr '\n' ' ') ;; 2) twoscreen ;; *) morescreen ;; esac ;}