summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-x.scripts/displayselect2
1 files changed, 1 insertions, 1 deletions
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 ;}