Advertisement
marcelohsp

Untitled

Apr 23rd, 2013
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 2.48 KB | None | 0 0
  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  "dbe"
  20.     Load  "dri"
  21.     Load  "dri2"
  22.     Load  "extmod"
  23.     Load  "glx"
  24.     Load  "record"
  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. EndSection
  45.  
  46. Section "Device"
  47.         ### Available Driver options are:-
  48.         ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
  49.         ### <string>: "String", <freq>: "<f> Hz/kHz/MHz"
  50.         ### [arg]: arg optional
  51.         #Option     "NoAccel"               # [<bool>]
  52.         #Option     "SWcursor"              # [<bool>]
  53.         #Option     "ColorKey"              # <i>
  54.         #Option     "CacheLines"            # <i>
  55.         #Option     "Dac6Bit"               # [<bool>]
  56.         #Option     "DRI"                   # [<bool>]
  57.         #Option     "NoDDC"                 # [<bool>]
  58.         #Option     "ShowCache"             # [<bool>]
  59.         #Option     "XvMCSurfaces"          # <i>
  60.         #Option     "PageFlip"              # [<bool>]
  61.     Identifier  "Card0"
  62.     Driver      "intel"
  63.     VendorName  "Intel Corporation"
  64.     BoardName   "82G33/G31 Express Integrated Graphics Controller"
  65.     BusID       "PCI:0:2:0"
  66. EndSection
  67.  
  68. Section "Screen"
  69.     Identifier "Screen0"
  70.     Device     "Card0"
  71.     Monitor    "Monitor0"
  72.     SubSection "Display"
  73.         Viewport   0 0
  74.         Depth     1
  75.     EndSubSection
  76.     SubSection "Display"
  77.         Viewport   0 0
  78.         Depth     4
  79.     EndSubSection
  80.     SubSection "Display"
  81.         Viewport   0 0
  82.         Depth     8
  83.     EndSubSection
  84.     SubSection "Display"
  85.         Viewport   0 0
  86.         Depth     15
  87.     EndSubSection
  88.     SubSection "Display"
  89.         Viewport   0 0
  90.         Depth     16
  91.     EndSubSection
  92.     SubSection "Display"
  93.         Viewport   0 0
  94.         Depth     24
  95.     EndSubSection
  96. EndSection
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement