Linux-Noob Forums

Full Version: xorg.conf
You're currently viewing a stripped down version of our content. View the full version with proper formatting.

Code:
Section "ServerLayout"
       Identifier     "X.org Configured"
       Screen      0  "Screen0" 0 0
       Screen      1  "Screen1" RightOf "Screen0"
       InputDevice    "Mouse0" "CorePointer"
       InputDevice    "Keyboard0" "CoreKeyboard"
       Option          "Xinerama" "On"
EndSection

Section "Files"
       RgbPath      "/usr/lib/X11/rgb"
       ModulePath   "/usr/lib/modules"
       FontPath     "/usr/share/fonts/misc/"
       FontPath     "/usr/share/fonts/TTF/"
       FontPath     "/usr/share/fonts/Type1/"
       FontPath     "/usr/share/fonts/CID/"
       FontPath     "/usr/share/fonts/75dpi/"
       FontPath     "/usr/share/fonts/100dpi/"
EndSection                      
                               
Section "Module"                
       Load  "glx"            
       Load  "extmod"          
       Load  "xtrap"          
       Load  "record"          
       Load  "dbe"            
       Load  "dri"            
       Load  "freetype"        
       Load  "type1"          
EndSection                      
                               
Section "InputDevice"          
       Identifier  "Keyboard0"
       Driver      "kbd"      
EndSection                      
                               
Section "InputDevice"          
       Identifier  "Mouse0"    
       Driver      "mouse"    
       Option      "Protocol" "IMPS/2"
       Option      "Device" "/dev/input/mice"
       Option      "ZAxis Mapping" "4 5"
       Option      "Buttons" "7"
EndSection                      
                               
Section "Monitor"              
       Identifier   "Monitor0"
       VendorName   "Monitor Vendor"
       ModelName    "Monitor Model"
EndSection                      
                               
Section "Monitor"              
       Identifier   "Monitor1"
       VendorName   "Monitor Vendor"
       ModelName    "Monitor Model"
EndSection

Section "Device"
       Identifier  "Card0"
       Driver      "nvidia"
       VendorName  "nVidia Corporation"
       BoardName   "NV25 [GeForce4 Ti 4600]"
       BusID       "PCI:1:5:0"
EndSection

Section "Device"
       Identifier  "Card1"
       Driver      "nvidia"
       VendorName  "nVidia Corporation"
       BoardName   "NV11 [GeForce2 MX/MX 400]"
       BusID       "PCI:2:4:0"
EndSection

Section "Screen"
       Identifier "Screen0"
       Device     "Card0"
       Monitor    "Monitor0"
       DefaultDepth 24
       SubSection "Display"
               Viewport   0 0
               Depth     1
       EndSubSection
       SubSection "Display"
               Viewport   0 0
               Depth     4
       EndSubSection
       SubSection "Display"
               Viewport   0 0
               Depth     8
       EndSubSection
       SubSection "Display"
               Viewport   0 0
               Depth     15
       EndSubSection
       SubSection "Display"
               Viewport   0 0
               Depth     16
       EndSubSection
       SubSection "Display"
               Viewport   0 0
               Depth     24
               Modes   "1600x1200"
       EndSubSection
EndSection

Section "Screen"
       Identifier "Screen1"
       Device     "Card1"
       Monitor    "Monitor1"
       DefaultDepth 24
       SubSection "Display"
               Viewport   0 0
               Depth     1
       EndSubSection
       SubSection "Display"
               Viewport   0 0
               Depth     4
       EndSubSection
       SubSection "Display"
               Viewport   0 0
               Depth     8
       EndSubSection
       SubSection "Display"
               Viewport   0 0
               Depth     15
       EndSubSection
       SubSection "Display"
               Viewport   0 0
               Depth     16
       EndSubSection
       SubSection "Display"
               Viewport   0 0
               Depth     24
               Modes   "1600x1200"
       EndSubSection
EndSection