blob: 61818a7c6b8b58ee1efe919403215c44e1144949 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/bash
IN="LVDS1"
EXT="VGA1"
if ( xrandr | grep -q "$EXT disconnected")
then
xrandr --output $IN --auto --output $EXT --off
else
xrandr --output $IN --auto --primary --output $EXT --auto --right-of $IN
## Only VGA
# xrandr --output $IN --mode 1366x768
# xrandr --output $EXT --mode 1366x768 --right-of $IN
fi
|