blob: 69a23dec0691e106a188b5ee387c4d784b087d61 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#!/bin/sh
if xrandr | grep 'HDMI-1 connected'; then
if xrandr | grep 'VGA-1 connected'; then
xrandr --output LVDS-1 --off
xrandr --output HDMI-1 --primary --mode 1920x1080 --pos 0x0 --rotate normal
xrandr --output DP-1 --off
xrandr --output VGA-1 --mode 1440x900 --pos 1920x180 --rotate normal
xrandr --output HDMI-2 --off
xrandr --output HDMI-3 --off
xrandr --output DP-2 --off
xrandr --output DP-3 --off
else
xrandr --output LVDS-1 --primary --mode 1366x768 --pos 0x0 --rotate normal
xrandr --output VGA-1 --off
xrandr --output HDMI-1 --off
xrandr --output DP-1 --off
xrandr --output HDMI-2 --off
xrandr --output HDMI-3 --off
xrandr --output DP-2 --off
xrandr --output DP-3 --off
fi
|