From ad3c407a5d4e22db849824f4676e0da8367a03b3 Mon Sep 17 00:00:00 2001 From: Gardouille Date: Wed, 18 Dec 2019 17:14:41 +0100 Subject: [PATCH] Update monitor config for home and game --- ecran | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/ecran b/ecran index 9792b4f..cc1ac65 100755 --- a/ecran +++ b/ecran @@ -10,6 +10,9 @@ case "${1}" in ds | dockstation | work ) xrandr --output DP-1 --mode 1920x1080 --left-of LVDS-1 --output LVDS-1 --mode 1366x768 printf 'Xrandr for DisplayPort with dock station';; + home ) + xrandr --output HDMI-1 --mode 1680x1050 --above LVDS-1 --output LVDS-1 --mode 1366x768 + printf 'Xrandr for home configuration';; vga ) xrandr --output VGA-1 --mode 1024x768 --right-of LVDS-1 --output LVDS-1 --mode 1366x768 printf 'Xrandr for dual screen with VGA';; @@ -26,6 +29,9 @@ case "${1}" in out ) xrandr --output HDMI-3 --mode 1920x1080 --output LVDS-1 --off ;; + game ) + xrandr --output HDMI-1 --mode 1680x1050 --output LVDS-1 --off + ;; * ) printf 'Bad argument, please use [vga|hdmi|ds|work|-|off]' exit 1;;