You are not logged in.
Hello
how can force my display to using exactly 60Hz.
Ive be triad in xorg.conf but xorg doesent care and use allways 75Hz on each TFT, it looks like a blurry window.
xorg.conf
Section "Monitor"
Identifier "SamsungTFT"
# Option "dpms"
HorizSync 31.5-61.0
VertRefresh 60-60
DisplaySize 376 301
EndSection
Section "Monitor"
Identifier "ProviewCRT"
# Option "dpms"
HorizSync 31.5-61.0
VertRefresh 60-60
DisplaySize 376 301
EndSection
Section "Screen"
Identifier "Screen0"
Device "Nvidia0"
Monitor "SamsungTFT"
DefaultDepth 24
Subsection "Display"
Depth 24
Modes "1280x1024"
EndSubsection
EndSection
I am hope someone can help me
Offline
The Nvidia drivers use different settings for the refresh rates than the standard xorg settings. You need to edit the device section of your xorg.conf file and add the options
Option "HorizSync" range
and
Option "VertRefresh" range
Here is how I have mine set up.
Section "Device"
Identifier "GeForceFX 5700 Ultra"
Driver "nvidia"
#VideoRam 131072
# Insert Clocks lines here if appropriate
Option "HorizSync"
Option "VertRefresh" "60"
Option "UseEdidDpi" "FALSE"
Option "DPI" "96 x 96"
Option "DPMS"
#Option "RenderAccel" "true"
#Option "AllowGLXWithComposite" "true"
Option "Coolbits" "1"
EndSection
Offline
Thank you works fine.
Offline