commit d4a976ff91ded0c0670fdc20dd07d219dcdfc8a4 parent 224dc03bce1dabe03588ed5bf02c4c347a6bc8e7 Author: Anton Konyahin <me@konyahin.xyz> Date: Wed, 24 Jan 2024 19:30:08 +0300 scripts: fix chscr script Diffstat:
M | scripts/dot-bin/chscr | | | 4 | ++-- |
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/scripts/dot-bin/chscr b/scripts/dot-bin/chscr @@ -9,8 +9,8 @@ fi case "$1" in "vga" ) - xrandr --output VGA-1 --primary --mode 1920x1080;; + xrandr --output VGA-1 --auto --output LVDS-1 --off;; "lvds" | * ) - xrandr --output LVDS-1 --primary --mode 1366x768;; + xrandr --output LVDS-1 --auto --output VGA-1 --off;; esac