Advertisement
Guest User

xorg.conf

a guest
Apr 27th, 2013
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.19 KB | None | 0 0
  1. Section "ServerLayout"
  2. Identifier "X.org Configured"
  3. Screen 0 "Screen0" 0 0
  4. Screen 1 "Screen1" RightOf "Screen0"
  5. InputDevice "Mouse0" "CorePointer"
  6. InputDevice "Keyboard0" "CoreKeyboard"
  7. Option "AutoAddDevices" "Off"
  8. Option "Log" "Sync"
  9. Option "AIGLX" "True"
  10. Option "DRI2" "True"
  11. EndSection
  12.  
  13. Section "Files"
  14. ModulePath "/usr/local/lib/xorg/modules"
  15. FontPath "/usr/local/lib/X11/fonts/misc/"
  16. FontPath "/usr/local/lib/X11/fonts/TTF/"
  17. FontPath "/usr/local/lib/X11/fonts/OTF/"
  18. FontPath "/usr/local/lib/X11/fonts/Type1/"
  19. FontPath "/usr/local/lib/X11/fonts/100dpi/"
  20. FontPath "/usr/local/lib/X11/fonts/75dpi/"
  21. FontPath "/usr/local/lib/X11/fonts/wqy/"
  22. EndSection
  23.  
  24. Section "Module"
  25. Load "dbe"
  26. Load "dri"
  27. Load "dri2"
  28. Load "extmod"
  29. Load "record"
  30. Load "glx"
  31. EndSection
  32.  
  33. Section "InputDevice"
  34. Identifier "Keyboard0"
  35. Driver "kbd"
  36. EndSection
  37.  
  38. Section "InputDevice"
  39. Identifier "Mouse0"
  40. Driver "mouse"
  41. Option "Protocol" "auto"
  42. Option "Device" "/dev/sysmouse"
  43. Option "ZAxisMapping" "4 5 6 7"
  44. EndSection
  45.  
  46. Section "Monitor"
  47. Identifier "Monitor0"
  48. VendorName "Monitor Vendor"
  49. ModelName "Monitor Model"
  50. EndSection
  51.  
  52. Section "Monitor"
  53. Identifier "Monitor1"
  54. VendorName "Monitor Vendor"
  55. ModelName "Monitor Model"
  56. EndSection
  57.  
  58. Section "Device"
  59. ### Available Driver options are:-
  60. ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
  61. ### <string>: "String", <freq>: "<f> Hz/kHz/MHz",
  62. ### <percent>: "<f>%"
  63. ### [arg]: arg optional
  64. #Option "DRI" # [<bool>]
  65. #Option "ColorKey" # <i>
  66. #Option "VideoKey" # <i>
  67. #Option "FallbackDebug" # [<bool>]
  68. #Option "Tiling" # [<bool>]
  69. #Option "LinearFramebuffer" # [<bool>]
  70. #Option "Shadow" # [<bool>]
  71. #Option "SwapbuffersWait" # [<bool>]
  72. #Option "TripleBuffer" # [<bool>]
  73. #Option "XvPreferOverlay" # [<bool>]
  74. #Option "DebugFlushBatches" # [<bool>]
  75. #Option "DebugFlushCaches" # [<bool>]
  76. #Option "DebugWait" # [<bool>]
  77. #Option "HotPlug" # [<bool>]
  78. #Option "RelaxedFencing" # [<bool>]
  79. #Option "DRI" "true"
  80. Identifier "Card0"
  81. Driver "intel"
  82. BusID "PCI:0:2:0"
  83. EndSection
  84.  
  85. #Section "Device"
  86. ### Available Driver options are:-
  87. ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
  88. ### <string>: "String", <freq>: "<f> Hz/kHz/MHz",
  89. ### <percent>: "<f>%"
  90. ### [arg]: arg optional
  91. #Option "ShadowFB" # [<bool>]
  92. #Option "DefaultRefresh" # [<bool>]
  93. #Option "ModeSetClearScreen" # [<bool>]
  94. # Identifier "Card1"
  95. # Driver "vesa"
  96. # BusID "PCI:0:2:0"
  97. #EndSection
  98.  
  99. Section "Screen"
  100. Identifier "Screen0"
  101. Device "Card0"
  102. Monitor "Monitor0"
  103. SubSection "Display"
  104. Viewport 0 0
  105. Depth 1
  106. EndSubSection
  107. SubSection "Display"
  108. Viewport 0 0
  109. Depth 4
  110. EndSubSection
  111. SubSection "Display"
  112. Viewport 0 0
  113. Depth 8
  114. EndSubSection
  115. SubSection "Display"
  116. Viewport 0 0
  117. Depth 15
  118. EndSubSection
  119. SubSection "Display"
  120. Viewport 0 0
  121. Depth 16
  122. EndSubSection
  123. SubSection "Display"
  124. Viewport 0 0
  125. Depth 24
  126. EndSubSection
  127. EndSection
  128.  
  129. Section "DRI"
  130. Mode 0660
  131. EndSection
  132.  
  133. Section "Extensions"
  134. Option "Composite" "Enable"
  135. EndSection
  136.  
  137. Section "Screen"
  138. Identifier "Screen1"
  139. Device "Card1"
  140. Monitor "Monitor1"
  141. SubSection "Display"
  142. Viewport 0 0
  143. Depth 1
  144. EndSubSection
  145. SubSection "Display"
  146. Viewport 0 0
  147. Depth 4
  148. EndSubSection
  149. SubSection "Display"
  150. Viewport 0 0
  151. Depth 8
  152. EndSubSection
  153. SubSection "Display"
  154. Viewport 0 0
  155. Depth 15
  156. EndSubSection
  157. SubSection "Display"
  158. Viewport 0 0
  159. Depth 16
  160. EndSubSection
  161. SubSection "Display"
  162. Viewport 0 0
  163. Depth 24
  164. EndSubSection
  165. EndSection
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement