Go to content Go to navigation Go to search

My latest xorg.conf · Apr 16, 02:12 PM by Dylan Doxey

I had to basically write this from scratch when I recently did a fresh Kubuntu install. Let's make sure that doesn't happen again.


#  xorg.conf

Section "Module"
        Load    "glx"
        Load    "kbd"
        Load    "mouse"
EndSection             

Section "InputDevice"
        Identifier      "The Keyboard"
        Driver          "kbd"
        Option          "CoreKeyboard"
        Option          "XkbRules" "xorg"
        Option          "XkbModel" "pc105"
        Option          "XkbLayout" "us"
EndSection

Section "InputDevice"
        Identifier      "The Mouse"
        Driver          "mouse"
        Option          "CorePointer"
EndSection

Section "Monitor"
        Identifier      "Left Monitor"
        VendorName      "DELL"
        ModelName       "DELL 1907FP"
        HorizSync       30.0 - 81.0
        VertRefresh     56.0 - 76.0
EndSection                                                                                                                                                                                                      

Section "Monitor"
        Identifier      "Right Monitor"
        VendorName      "DELL"         
        ModelName       "DELL 1907FP"  
        HorizSync       30.0 - 81.0    
        VertRefresh     56.0 - 76.0    
EndSection                             

Section "Screen"
        Identifier      "Right Screen"
        Monitor         "Right Monitor"
        Device          "Video Card A"
        Option          "TwinView" "True"
        DefaultDepth    24               
EndSection                               

Section "Screen"
        Identifier      "Left Screen"
        Monitor         "Left Monitor"
        Device          "Video Card B" 
        Option          "TwinView" "True"
EndSection                               

Section "Device"
        Identifier      "Video Card A"
        BusID           "PCI:1:0:0"
        Screen          0
        VendorName      "nVidia Corporation"
        BoardName       "GeForce 7300 LE"
        Driver  "nvidia"
        Option  "NoLogo"        "True"
EndSection

Section "Device"
        Identifier      "Video Card B"
        BusID           "PCI:1:0:0"
        Screen          1
        VendorName      "nVidia Corporation"
        BoardName       "GeForce 7300 LE"
        Driver  "nvidia"
        Option  "NoLogo"        "True"
EndSection

Section "ServerLayout"
        Identifier      "Default Layout"
        Screen          0 "Right Screen"
        Screen          1 "Left Screen" LeftOf "Right Screen"
        InputDevice     "The Keyboard"  "CoreKeyboard"
        InputDevice     "The Mouse"     "CorePointer"
EndSection

Section "ServerFlags"
        Option                  "Xinerama"      "0"
        DefaultServerLayout     "Default Layout"
EndSection

Commenting is closed for this article.