Views:
1,002β
Votes: 1β
β
Solution
Tags:
gnome
xorg
display-resolution
Link:
π See Original Answer on Ask Ubuntu β§ π
URL:
https://askubuntu.com/q/945993
Title:
Gnome refuses switching to custom resolution
ID:
/2017/08/14/Gnome-refuses-switching-to-custom-resolution
Created:
August 14, 2017
Edited: June 12, 2020
Upload:
September 15, 2024
Layout: post
TOC:
false
Navigation: false
Copy to clipboard: false
Youβre making a minor mistake in /etc/X11/xorg.conf
Section "Monitor"
Identifier "HDMI1"
Option "PreferredMode" "1680x1050_60.00"
EndSection
You need an extra line (real life example, not yours):
Section "Monitor"
Identifier "VGA1"
Modeline "1280x1024_60.00" 109.00 1280 1368 1496 1712 1024 1027 1034 1063 -hsync +vsync
Option "PreferredMode" "1280x1024_60.00"
EndSection
To setup the Modeline
values you need to use:
cvt 1680 1050
copy and paste the output values to your /etc/X11/xorg.conf
. In addition
to the βMonitorβ section you should have a βScreenβ and βDeviceβ section as well.
Reference: Arch Linux RandR X Window System