Created
February 6, 2014 09:20
-
-
Save rinx/8840933 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 | grep "1229x922" | |
| if [ $? -eq 0 ]; then | |
| xrandr --output LVDS1 --scale 1x1 --panning 1024x768 | |
| else | |
| xrandr --output LVDS1 --scale 1.2x1.2 --panning 1229x922 | |
| fi | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment