Guest User

xorg.conf

a guest
Sep 16th, 2013
33
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. Section "ServerLayout"
  2.     Identifier     "X.org Configured"
  3.     Screen      0  "Screen0" 0 0
  4.     InputDevice    "Mouse0" "CorePointer"
  5.     InputDevice    "Keyboard0" "CoreKeyboard"
  6. EndSection
  7.  
  8. Section "Files"
  9.     ModulePath   "/usr/local/lib/xorg/modules"
  10.     FontPath     "/usr/local/lib/X11/fonts/misc/"
  11.     FontPath     "/usr/local/lib/X11/fonts/TTF/"
  12.     FontPath     "/usr/local/lib/X11/fonts/OTF"
  13.     FontPath     "/usr/local/lib/X11/fonts/Type1/"
  14.     FontPath     "/usr/local/lib/X11/fonts/100dpi/"
  15.     FontPath     "/usr/local/lib/X11/fonts/75dpi/"
  16. EndSection
  17.  
  18. Section "Module"
  19.     Load  "extmod"
  20.     Load  "record"
  21.     Load  "dbe"
  22.     Load  "dri"
  23.     Load  "dri2"
  24.     Load  "glx"
  25. EndSection
  26.  
  27. Section "InputDevice"
  28.     Identifier  "Keyboard0"
  29.     Driver      "kbd"
  30. EndSection
  31.  
  32. Section "InputDevice"
  33.     Identifier  "Mouse0"
  34.     Driver      "mouse"
  35.     Option      "Protocol" "auto"
  36.     Option      "Device" "/dev/sysmouse"
  37.     Option      "ZAxisMapping" "4 5 6 7"
  38. EndSection
  39.  
  40. Section "Monitor"
  41.     Identifier   "Monitor0"
  42.     VendorName   "Monitor Vendor"
  43.     ModelName    "Monitor Model"
  44.     Option       "DPMS"
  45.     HorizSync    30-70
  46.     VertRefresh  50-160
  47. EndSection
  48.  
  49. Section "Device"
  50.         ### Available Driver options are:-
  51.         ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
  52.         ### <string>: "String", <freq>: "<f> Hz/kHz/MHz"
  53.         ### [arg]: arg optional
  54.         #Option     "SWcursor"              # [<bool>]
  55.         #Option     "HWcursor"              # [<bool>]
  56.         #Option     "NoAccel"               # [<bool>]
  57.         #Option     "ShadowFB"              # [<bool>]
  58.         #Option     "UseFBDev"  "True"              # [<bool>]
  59.         #Option     "Rotate"                # [<str>]
  60.         #Option     "VideoKey"              # <i>
  61.         #Option     "FlatPanel"             # [<bool>]
  62.         #Option     "FPDither"              # [<bool>]
  63.         #Option     "CrtcNumber"            # <i>
  64.         #Option     "FPScale"               # [<bool>]
  65.         #Option     "FPTweak"               # <i>
  66.         #Option     "DualHead"              # [<bool>]
  67.     Identifier  "Card0"
  68.     Driver      "nv"
  69.     VendorName  "NVIDIA Corporation"
  70.     BoardName   "NV43 [GeForce 6600]"
  71.     BusID       "PCI:11:0:0"
  72. EndSection
  73.  
  74. Section "Screen"
  75.     Identifier "Screen0"
  76.     Device     "Card0"
  77.     Monitor    "Monitor0"
  78.     DefaultDepth 24
  79.     SubSection "Display"
  80.         Viewport   0 0
  81.         Depth     1
  82.     EndSubSection
  83.     SubSection "Display"
  84.         Viewport   0 0
  85.         Depth     4
  86.     EndSubSection
  87.     SubSection "Display"
  88.         Viewport   0 0
  89.         Depth     8
  90.     EndSubSection
  91.     SubSection "Display"
  92.         Viewport   0 0
  93.         Depth     15
  94.     EndSubSection
  95.     SubSection "Display"
  96.         Viewport   0 0
  97.         Depth     16
  98.     EndSubSection
  99.     SubSection "Display"
  100.         Viewport   0 0
  101.         Depth     24
  102.         Modes "1280x1024" "1024x768" "800x600" "640x480"
  103.     EndSubSection
  104. EndSection
  105.  
  106. Section "DRI"
  107.     Mode 0666
  108. EndSection
  109.  
  110. Section "Extensions"
  111.     Option "Composite" "Disable"
  112. EndSection
  113.  
  114. Section "ServerFlags"
  115.     Option "AIGLX" "off"
  116. EndSection
Advertisement
Add Comment
Please, Sign In to add comment