31-05-2013, 07:20 PM
Несколько мониторов на E17/LXDE/etc. :
Скрипт (пока as-is):
Скрипт (пока as-is):
Код:
if [ "$1" == "-help" ]; then
echo "-help - this message"
echo "-l - LVDS"
exit 0
fi
if [ "$1" == "-l" ]; then
xrandr --output DVI-0 --off ; sleep 2
xrandr --output LVDS --auto --output VGA-0 --off
exit 0
fi
xrandr | grep DVI | grep " connected "
if [ $? -eq 0 ]; then
# External monitor is connected
# xrandr --output VGA --mode 1280x1024 --pos 0x0 --output LVDS --mode 1400x1050 --pos 0x998
xrandr --output VGA-0 --auto --pos 0x0; sleep 2
xrandr --output LVDS --off; sleep 2
# xrandr --output DVI-0 --mode 1680x1050 --pos 0x0 --output VGA-0 --mode 1920x1080 --right-of DVI-0
xrandr --output DVI-0 --auto --pos 0x0 --output VGA-0 --auto --right-of DVI-0
exit 0;
fi
xrandr | grep VGA | grep "connected"
if [ $? -eq 0 ]; then
xrandr --output VGA-0 --auto --pos 0x0 --output LVDS --mode 1440x900 --pos 0x998
exit 0;
fi
# if [ $? -ne 0 ]; then
# Something went wrong. Autoconfigure the internal monitor and disable the external one
xrandr --output LVDS --auto --output VGA-0 --off
# fi
# else
# External monitor is not connected
# xrandr --output LVDS --mode 1440x900 --output VGA-0 --off
# fi