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;;