123456789101112131415161718192021222324 |
- #!/bin/bash
- # The script I used since like 2009:
- #use "cvt 1280 768 60.00" to get the modeline
- #(Thu Apr 12@08:35 PM)(tyler@Tilers)(~)
- # xrandr --newmode 1280x768_60.00 80.14 1280 1344 1480 1680 768 769 772 795 -HSync +Vsync
- #(Thu Apr 12@08:36 PM)(tyler@Tilers)(~)
- # xrandr --addmode VGA1 1280x768_60.00
- #(Thu Apr 12@08:36 PM)(tyler@Tilers)(~)
- # xrandr --output VGA1 --mode 1280x768_60.00 --primary
- # Turn off Laptop display:
- #xrandr --output LVDS1 --off
- # New school
- laptop="LVDS1"
- vga="VGA1"
- if xrandr | grep -q "$vga connected"; then
- xrandr --newmode 1280x768_60.00 80.14 1280 1344 1480 1680 768 769 772 795 -HSync +Vsync
- xrandr --addmode VGA1 1280x768_60.00
- xrandr --output $IN --off --output VGA1 --mode 1280x768_60.00 --primary
- fi
|