Hello.

Is there any tool to find out what V,H refresh rates should I set in
xorg.conf for my laptop display? It's HP Copmaq 6510b with 1280x800
resolution.

Are they still needed btw?
-- 
Rafal Brodewicz
Section "Module"
    Load        "dbe"
    SubSection  "extmod"
    Option    "omit xfree86-dga"
    EndSubSection
    Load        "freetype"
EndSection

Section "Files"
    FontPath   "/usr/X11R6/lib/X11/fonts/misc/"
        FontPath   "/usr/X11R6/lib/X11/fonts/75dpi/:unscaled"
        FontPath   "/usr/X11R6/lib/X11/fonts/100dpi/:unscaled"
        FontPath   "/usr/X11R6/lib/X11/fonts/TTF/"
        FontPath   "/usr/X11R6/lib/X11/fonts/OTF"
        FontPath   "/usr/X11R6/lib/X11/fonts/Type1/"
        FontPath   "/usr/X11R6/lib/X11/fonts/Speedo/"
        FontPath   "/usr/local/lib/X11/fonts/ghostscript/"
        FontPath   "/usr/local/lib/X11/fonts/artwiz-aleczapka"
        FontPath   "/usr/local/lib/X11/fonts/terminus"
        FontPath   "/usr/local/lib/X11/fonts/TTF"

EndSection

Section "ServerFlags"
EndSection

Section "InputDevice"
        Identifier      "Keyboard1"
        Driver  "kbd"
        Option "AutoRepeat" "500 30"
        Option "XkbRules"       "xorg"
        Option "XkbModel"       "pc105"
        Option "XkbLayout"      "pl"
EndSection

Section "InputDevice"
        Identifier      "Mouse1"
        Driver  "mouse"
        Option "Protocol"    "wsmouse"
        Option "Device"      "/dev/wsmouse"
        Option "Emulate3Buttons"
        Option "ZAxisMapping" "4 5"
EndSection

Section "Monitor"
        Identifier  "hp"                # laptop display
        HorizSync   31-64               # ?
        VertRefresh 59-61               # ?
EndSection

Section "Monitor"
        Identifier  "eizo"              # external display
        HorizSync   31-64
        VertRefresh 59-61
EndSection

Section "Device"
        Identifier  "intel"
        Driver      "intel"
        Option "DRI" "true"
        Option "monitor-VGA" "eizo"
        Option "monitor-LVDS" "hp"
EndSection

Section "Screen"
        Identifier  "Screen 1"
        Device      "intel"
        Monitor     "hp"
        DefaultDepth 24
        Subsection "Display"
        Depth       8
        Modes       "1280x800" "1280x1024"
        ViewPort    0 0
        EndSubsection
        Subsection "Display"
        Depth       16
        Modes       "1280x800" "1280x1024"
        ViewPort    0 0
        EndSubsection
        Subsection "Display"
        Depth       24
        Modes       "1280x1024" "1280x800" 
        ViewPort    0 0
        EndSubsection
EndSection

Section "ServerLayout"
        Identifier  "Simple Layout"
        Screen "Screen 1"
        InputDevice "Mouse1" "CorePointer"
        InputDevice "Keyboard1" "CoreKeyboard"
EndSection

Reply via email to