1
2
3
4
5
6
7
8
9
10
11
12 | #!/bin/bash #xrandr --output LVDS1 --primary #xrandr --output HDMI3 --mode 1360x768 --rate 60 #xrandr --output HDMI3 --left-of LVDS1 xrandr --output DP3 --mode 1920x1200 --rate 60 xrandr --output LVDS1 --off xrandr --output VGA1 --mode 1920x1200 --rate 60 --right-of DP3 --rotate left |