Created
May 3, 2010 05:07
-
-
Save frogonwheels/387776 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
xrandr --output DVI-0 --auto --output VGA-0 --auto | |
sleep 3 | |
xrandr --output DVI-0 --off | |
sleep 3 | |
# Now need to add this step! | |
xrandr --output VGA-0 --mode 1280x1024 --pos 0x0 --rotate normal --output S-video --off --output DVI-0 --mode 1280x1024 --pos 0x0 --rotate normal | |
sleep 3 | |
# No longer works | |
#xrandr --output DVI-0 --auto --right-of VGA-0 | |
xrandr --output VGA-0 --mode 1280x1024 --pos 0x0 --rotate normal --output S-video --off --output DVI-0 --mode 1280x1024 --pos 1280x0 --rotate normal |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment