Advertisement
Guest User

Untitled

a guest
Mar 8th, 2011
250
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/lib/xorg/modules"
  10.     FontPath     "/usr/share/fonts/misc/"
  11.     FontPath     "/usr/share/fonts/TTF/"
  12.     FontPath     "/usr/share/fonts/OTF/"
  13.     FontPath     "/usr/share/fonts/Type1/"
  14.     FontPath     "/usr/share/fonts/100dpi/"
  15.     FontPath     "/usr/share/fonts/75dpi/"
  16. EndSection
  17.  
  18. Section "Module"
  19.     Load  "dri"
  20.     Load  "dri2"
  21.     Load  "record"
  22.     Load  "glx"
  23.     Load  "extmod"
  24.     Load  "dbe"
  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/input/mice"
  37.     Option      "ZAxisMapping" "4 5 6 7"
  38. EndSection
  39.  
  40. Section "Device"
  41.         ### Available Driver options are:-
  42.         ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
  43.         ### <string>: "String", <freq>: "<f> Hz/kHz/MHz",
  44.         ### <percent>: "<f>%"
  45.         ### [arg]: arg optional
  46.         #Option     "AccelMethod"           # [<str>]
  47.         #Option     "DRI"                   # [<bool>]
  48.         #Option     "ColorKey"              # <i>
  49.         #Option     "VideoKey"              # <i>
  50.         #Option     "FallbackDebug"         # [<bool>]
  51.         #Option     "Tiling"                # [<bool>]
  52.         #Option     "Shadow"                # [<bool>]
  53.         #Option     "SwapbuffersWait"       # [<bool>]
  54.         #Option     "XvMC"                  # [<bool>]
  55.         #Option     "XvPreferOverlay"       # [<bool>]
  56.         #Option     "DebugFlushBatches"     # [<bool>]
  57.         #Option     "DebugFlushCaches"      # [<bool>]
  58.         #Option     "DebugWait"             # [<bool>]
  59.         #Option     "HotPlug"               # [<bool>]
  60.     Identifier  "Card0"
  61.     Driver      "intel"
  62.     BusID       "PCI:0:2:0"
  63.         Option      "monitor-VGA"  "VGA"
  64.         Option      "monitor-TV"   "TV"
  65.         Option      "monitor-LVCD" "LVCD"
  66. EndSection
  67.  
  68. Section "Monitor"
  69.         Identifier      "VGA"
  70.         Option "Ignore" "true"
  71. EndSection
  72.  
  73. Section "Monitor"
  74.         Identifier      "LVCD"
  75.         Option          "DPMS"
  76. EndSection
  77.  
  78. Section "Monitor"
  79.         Identifier      "TV"
  80.         Option  "Ignore" "false"
  81. EndSection
  82.  
  83. Section "Screen"
  84.     Identifier "Screen0"
  85.     Device     "Card0"
  86.     Monitor    "LVCD"
  87.     SubSection "Display"
  88.         Viewport   0 0
  89.         Depth     1
  90.     EndSubSection
  91.     SubSection "Display"
  92.         Viewport   0 0
  93.         Depth     4
  94.     EndSubSection
  95.     SubSection "Display"
  96.         Viewport   0 0
  97.         Depth     8
  98.     EndSubSection
  99.     SubSection "Display"
  100.         Viewport   0 0
  101.         Depth     15
  102.     EndSubSection
  103.     SubSection "Display"
  104.         Viewport   0 0
  105.         Depth     16
  106.     EndSubSection
  107.     SubSection "Display"
  108.         Viewport   0 0
  109.         Depth     24
  110.     EndSubSection
  111. EndSection
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement