
Originally Posted by
e8johan
I was just able to solve this in an easier manner. I simply add a new modeline, but with a lower refresh frequency.
Code:
xrandr --newmode "1920x1200_35.00" 107.02 1920 2008 2208 2496 1200 1201 1204 1225 -HSync +Vsync
xrandr --addmode DP1 "1920x1200_35.00"
Then I can pick it from the list of resolutions in the Display Settings dialog (in Kubuntu) and it works.
BRILLIANT. This solved it for me.
For what it's worth a refresh rate of 45 also works. Here's a simple script to generate the modelines for both 35 and 45 and add them for xrandr.
Code:
for _rate in 35 45
do
_newmode="$(gtf 1920 1200 $_rate.00 | grep Modeline | sed "s/.*Modeline\s*\(.*\)/\1/")"
_addmode="$(gtf 1920 1200 $_rate.00 | grep Modeline | sed "s/.*Modeline\s*\(\".*\"\).*/\1/")"
eval xrandr --newmode $_newmode
eval xrandr --addmode DP1 $_addmode
done