Advertisement
Guest User

xorg.conf

a guest
Apr 27th, 2013
114
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.     Option         "AIGLX" "True"
  7. EndSection
  8.  
  9. Section "Files"
  10.     ModulePath   "/usr/local/lib/xorg/modules"
  11.     FontPath     "/usr/local/lib/X11/fonts/misc/"
  12.     FontPath     "/usr/local/lib/X11/fonts/TTF/"
  13.     FontPath     "/usr/local/lib/X11/fonts/OTF/"
  14.     FontPath     "/usr/local/lib/X11/fonts/Type1/"
  15.     FontPath     "/usr/local/lib/X11/fonts/100dpi/"
  16.     FontPath     "/usr/local/lib/X11/fonts/75dpi/"
  17.         FontPath     "/usr/local/lib/X11/fonts/Droid"
  18.         FontPath     "/usr/local/lib/X11/fonts/webfonts"
  19.         FontPath     "/usr/local/lib/X11/fonts/Liberation/"
  20.         FontPath     "/usr/local/lib/X11/fonts/ubuntu-font/"
  21. EndSection
  22.  
  23. Section "Module"
  24.     Load  "record"
  25.     Load  "extmod"
  26.     Load  "glx"
  27.     Load  "dbe"
  28.     Load  "dri"
  29.     Load  "dri2"
  30. EndSection
  31.  
  32. Section "InputDevice"
  33.     Identifier  "Keyboard0"
  34.     Driver      "kbd"
  35. EndSection
  36.  
  37. Section "InputDevice"
  38.     Identifier  "Mouse0"
  39.     Driver      "mouse"
  40.     Option      "Protocol" "auto"
  41.     Option      "Device" "/dev/psm0"
  42.     Option      "ZAxisMapping" "4 5 6 7"
  43. EndSection
  44.  
  45. Section "Monitor"
  46.     Identifier   "Monitor0"
  47.     VendorName   "Monitor Vendor"
  48.     ModelName    "Monitor Model"
  49. EndSection
  50.  
  51. Section "Device"
  52.         ### Available Driver options are:-
  53.         ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
  54.         ### <string>: "String", <freq>: "<f> Hz/kHz/MHz",
  55.         ### <percent>: "<f>%"
  56.         ### [arg]: arg optional
  57.         #Option     "DRI"                   # [<bool>]
  58.         #Option     "ColorKey"              # <i>
  59.         #Option     "VideoKey"              # <i>
  60.         #Option     "FallbackDebug"         # [<bool>]
  61.         #Option     "Tiling"                # [<bool>]
  62.         #Option     "LinearFramebuffer"     # [<bool>]
  63.         #Option     "Shadow"                # [<bool>]
  64.         #Option     "SwapbuffersWait"       # [<bool>]
  65.         #Option     "TripleBuffer"          # [<bool>]
  66.         #Option     "XvMC"                  # [<bool>]
  67.         #Option     "XvPreferOverlay"       # [<bool>]
  68.         #Option     "DebugFlushBatches"     # [<bool>]
  69.         #Option     "DebugFlushCaches"      # [<bool>]
  70.         #Option     "DebugWait"             # [<bool>]
  71.         #Option     "HotPlug"               # [<bool>]
  72.         #Option     "RelaxedFencing"        # [<bool>]
  73.     Option      "RegistryDwords" "EnableBrightnessControl=1"
  74.     Option      "AccelMethod" "EXA"
  75.     Identifier  "Card0"
  76.     Driver      "intel"
  77.     BusID       "PCI:0:2:0"
  78. EndSection
  79.  
  80. Section "Screen"
  81.     Identifier "Screen0"
  82.     Device     "Card0"
  83.     Monitor    "Monitor0"
  84.     SubSection "Display"
  85.         Viewport   0 0
  86.         Depth     1
  87.     EndSubSection
  88.     SubSection "Display"
  89.         Viewport   0 0
  90.         Depth     4
  91.     EndSubSection
  92.     SubSection "Display"
  93.         Viewport   0 0
  94.         Depth     8
  95.     EndSubSection
  96.     SubSection "Display"
  97.         Viewport   0 0
  98.         Depth     15
  99.     EndSubSection
  100.     SubSection "Display"
  101.         Viewport   0 0
  102.         Depth     16
  103.     EndSubSection
  104.     SubSection "Display"
  105.         Viewport   0 0
  106.         Depth     24
  107.     EndSubSection
  108. EndSection
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement