Advertisement
Guest User

Untitled

a guest
Feb 12th, 2012
192
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.98 KB | None | 0 0
  1. Section "Files"
  2. ModulePath "/usr/lib64/xorg/modules"
  3. FontPath "/usr/share/fonts/misc/"
  4. FontPath "/usr/share/fonts/TTF/"
  5. FontPath "/usr/share/fonts/OTF/"
  6. FontPath "/usr/share/fonts/Type1/"
  7. FontPath "/usr/share/fonts/100dpi/"
  8. FontPath "/usr/share/fonts/75dpi/"
  9. EndSection
  10.  
  11. Section "Module"
  12. Load "dbe"
  13. Load "extmod"
  14. Load "dri"
  15. Load "dri2"
  16. Load "glx"
  17. Load "record"
  18. EndSection
  19.  
  20. Section "InputDevice"
  21. Identifier "Keyboard0"
  22. Driver "kbd"
  23. EndSection
  24.  
  25. Section "InputDevice"
  26. Identifier "Mouse0"
  27. Driver "mouse"
  28. Option "Protocol" "auto"
  29. Option "Device" "/dev/input/mice"
  30. Option "ZAxisMapping" "4 5 6 7"
  31. EndSection
  32.  
  33. Section "Monitor"
  34. Identifier "DellLeft"
  35. VendorName "Monitor Dell"
  36. ModelName "Monitor 2007FP"
  37. EndSection
  38.  
  39. Section "Monitor"
  40. Identifier "DellRight"
  41. VendorName "Monitor Dell"
  42. ModelName "Monitor 2007FP"
  43. EndSection
  44.  
  45. Section "Device"
  46. ### Available Driver options are:-
  47. ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
  48. ### <string>: "String", <freq>: "<f> Hz/kHz/MHz",
  49. ### <percent>: "<f>%"
  50. ### [arg]: arg optional
  51. #Option "SWcursor" # [<bool>]
  52. #Option "HWcursor" # [<bool>]
  53. #Option "NoAccel" # [<bool>]
  54. #Option "ShadowFB" # [<bool>]
  55. #Option "VideoKey" # <i>
  56. #Option "WrappedFB" # [<bool>]
  57. #Option "GLXVBlank" # [<bool>]
  58. #Option "ZaphodHeads" # <str>
  59. #Option "PageFlip" # [<bool>]
  60. Identifier "NvidiaLeft"
  61. Driver "nouveau"
  62. BusID "PCI:1:0:0"
  63. EndSection
  64.  
  65. Section "Device"
  66. ### Available Driver options are:-
  67. ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
  68. ### <string>: "String", <freq>: "<f> Hz/kHz/MHz",
  69. ### <percent>: "<f>%"
  70. ### [arg]: arg optional
  71. #Option "SWcursor" # [<bool>]
  72. #Option "HWcursor" # [<bool>]
  73. #Option "NoAccel" # [<bool>]
  74. #Option "ShadowFB" # [<bool>]
  75. #Option "VideoKey" # <i>
  76. #Option "WrappedFB" # [<bool>]
  77. #Option "GLXVBlank" # [<bool>]
  78. #Option "ZaphodHeads" # <str>
  79. #Option "PageFlip" # [<bool>]
  80. Identifier "NvidiaRight"
  81. Driver "nouveau"
  82. BusID "PCI:2:0:0"
  83. EndSection
  84.  
  85. Section "Screen"
  86. Identifier "ScreenLeft"
  87. Device "NvidiaLeft"
  88. Monitor "DellLeft"
  89. SubSection "Display"
  90. Viewport 0 0
  91. Depth 1
  92. EndSubSection
  93. # SubSection "Display"
  94. # Viewport 0 0
  95. # Depth 4
  96. # EndSubSection
  97. # SubSection "Display"
  98. # Viewport 0 0
  99. # Depth 8
  100. # EndSubSection
  101. # SubSection "Display"
  102. # Viewport 0 0
  103. # Depth 15
  104. # EndSubSection
  105. # SubSection "Display"
  106. # Viewport 0 0
  107. # Depth 16
  108. # EndSubSection
  109. SubSection "Display"
  110. Viewport 0 0
  111. Depth 24
  112. EndSubSection
  113. EndSection
  114.  
  115. Section "Screen"
  116. Identifier "ScreenRight"
  117. Device "NvidiaRight"
  118. Monitor "DellRight"
  119. # SubSection "Display"
  120. # Viewport 0 0
  121. # Depth 1
  122. # EndSubSection
  123. # SubSection "Display"
  124. # Viewport 0 0
  125. # Depth 4
  126. # EndSubSection
  127. # SubSection "Display"
  128. # Viewport 0 0
  129. # Depth 8
  130. # EndSubSection
  131. # SubSection "Display"
  132. # Viewport 0 0
  133. # Depth 15
  134. # EndSubSection
  135. # SubSection "Display"
  136. # Viewport 0 0
  137. # Depth 16
  138. # EndSubSection
  139. SubSection "Display"
  140. Viewport 0 0
  141. Depth 24
  142. EndSubSection
  143. EndSection
  144.  
  145. Section "ServerLayout"
  146. Identifier "X.org Configured"
  147. Screen 0 "ScreenLeft" 0 0
  148. Screen 1 "ScreenRight" RightOf "ScreenLeft"
  149. InputDevice "Mouse0" "CorePointer"
  150. InputDevice "Keyboard0" "CoreKeyboard"
  151. EndSection
  152.  
  153. # Section "ServerFlags"
  154. # Option "Xinerama" "true"
  155. # EndSection
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement