Last active
January 14, 2019 13:20
-
-
Save spelcaster/f7a973e5a805ea6b7cc9a9c7f8352cf5 to your computer and use it in GitHub Desktop.
Revisions
-
spelcaster revised this gist
Jan 14, 2019 . 1 changed file with 12 additions and 0 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -11,4 +11,16 @@ Section "Monitor" HorizSync 30.0 - 83.0 VertRefresh 56.0 - 76.0 EndSection ``` And update the `screen` section: ``` Section "Screen" # ... Monitor "Dell-P2414Hb" # ... EndSection ``` -
spelcaster created this gist
Jan 14, 2019 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,14 @@ If `cat /var/log/Xorg.0.log | grep -P "Mode is rejected: (Vert|Horiz)"`, then you probably need to update the monitor section in your xorg.conf. Example: ``` Section "Monitor" Identifier "Dell-P2414Hb" VendorName "DELL" ModelName "P2414Hb" HorizSync 30.0 - 83.0 VertRefresh 56.0 - 76.0 EndSection ```