Last active
November 13, 2019 10:10
-
-
Save garciparedes/f3b6d38ef7125a7b3c04d5e5ea970de4 to your computer and use it in GitHub Desktop.
Screen resolution setup for ultra wide screen
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/bash | |
| # Screen resolution setup for ultra wide screen | |
| # URL: https://gist.github.com/garciparedes/f3b6d38ef7125a7b3c04d5e5ea970de4 | |
| sudo cvt 2560 1080 60 | |
| xrandr --newmode "2560x1080_60.00" 230.00 2560 2720 2992 3424 1080 1083 1093 1120 -hsync +vsync | |
| sudo xrandr --addmode HDMI-1-2 2560x1080_60.00 | |
| sudo xrandr --output HDMI-1-2 --mode 2560x1080_60.00 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment