Guest User

xorg.conf

a guest
Sep 15th, 2012
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.11 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 "TPPS/2 IBM TrackPoint" "CorePointer"
  6. InputDevice "Keyboard0" "CoreKeyboard"
  7. EndSection
  8.  
  9. Section "Files"
  10. ModulePath "/usr/lib/xorg/modules"
  11. FontPath "/usr/share/fonts/misc/"
  12. FontPath "/usr/share/fonts/TTF/"
  13. FontPath "/usr/share/fonts/OTF/"
  14. FontPath "/usr/share/fonts/Type1/"
  15. FontPath "/usr/share/fonts/100dpi/"
  16. FontPath "/usr/share/fonts/75dpi/"
  17. EndSection
  18.  
  19. Section "Module"
  20. Load "record"
  21. Load "dri"
  22. Load "dri2"
  23. Load "extmod"
  24. Load "dbe"
  25. Load "glx"
  26. EndSection
  27.  
  28. Section "InputDevice"
  29. Identifier "Keyboard0"
  30. Driver "evdev"
  31. EndSection
  32.  
  33. Section "InputDevice"
  34. Identifier "TPPS/2 IBM TrackPoint"
  35. Driver "evdev"
  36. Option "Device" "/dev/input/by-path/platform-i8042-serio-1-event-mouse"
  37. Option "GrabDevice" "False"
  38. Option "EmulateWheel" "true" #Enable wheel emulation for the Trackpoint
  39. Option "EmulateWheelButton" "2" #Use the middle button for the emulation
  40. Option "XAxisMapping" "6 7" #Map trackpoint X axis to X axis of emulated wheel
  41. Option "YAxisMapping" "4 5" #Map trackpoint Y axis to Y axis of emulated wheel
  42. EndSection
  43.  
  44. #Section "InputDevice"
  45. # Identifier "Mouse0"
  46. # Driver "mouse"
  47. # Option "Protocol" "auto"
  48. # Option "Device" "/dev/input/mice"
  49. # Option "ZAxisMapping" "4 5 6 7"
  50. #EndSection
  51.  
  52. Section "Monitor"
  53. Identifier "Monitor0"
  54. VendorName "Monitor Vendor"
  55. ModelName "Monitor Model"
  56. EndSection
  57.  
  58. Section "Monitor"
  59. Identifier "Monitor1"
  60. VendorName "Monitor Vendor"
  61. ModelName "Monitor Model"
  62. EndSection
  63.  
  64. Section "Device"
  65. ### Available Driver options are:-
  66. ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
  67. ### <string>: "String", <freq>: "<f> Hz/kHz/MHz",
  68. ### <percent>: "<f>%"
  69. ### [arg]: arg optional
  70. #Option "LinearFramebuffer" # [<bool>]
  71. #Option "Tiling" # [<bool>]
  72. #Option "XvPreferOverlay" # [<bool>]
  73. #Option "ColorKey" # <i>
  74. #Option "VideoKey" # <i>
  75. #Option "HotPlug" # [<bool>]
  76. #Option "Throttle" # [<bool>]
  77. #Option "UseRelaxedFencing" # [<bool>]
  78. #Option "UseVmap" # [<bool>]
  79. #Option "ZaphodHeads" # <str>
  80. #Option "DelayedFlush" # [<bool>]
  81. Identifier "Card0"
  82. Driver "intel"
  83. BusID "PCI:0:2:0"
  84. EndSection
  85.  
  86. Section "Device"
  87. ### Available Driver options are:-
  88. ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
  89. ### <string>: "String", <freq>: "<f> Hz/kHz/MHz",
  90. ### <percent>: "<f>%"
  91. ### [arg]: arg optional
  92. #Option "ShadowFB" # [<bool>]
  93. #Option "Rotate" # <str>
  94. #Option "fbdev" # <str>
  95. #Option "debug" # [<bool>]
  96. Identifier "Card1"
  97. Driver "fbdev"
  98. BusID "PCI:0:2:0"
  99. EndSection
  100.  
  101. Section "Screen"
  102. Identifier "Screen0"
  103. Device "Card0"
  104. Monitor "Monitor0"
  105. SubSection "Display"
  106. Viewport 0 0
  107. Depth 1
  108. EndSubSection
  109. SubSection "Display"
  110. Viewport 0 0
  111. Depth 4
  112. EndSubSection
  113. SubSection "Display"
  114. Viewport 0 0
  115. Depth 8
  116. EndSubSection
  117. SubSection "Display"
  118. Viewport 0 0
  119. Depth 15
  120. EndSubSection
  121. SubSection "Display"
  122. Viewport 0 0
  123. Depth 16
  124. EndSubSection
  125. SubSection "Display"
  126. Viewport 0 0
  127. Depth 24
  128. EndSubSection
  129. EndSection
  130.  
  131. Section "Screen"
  132. Identifier "Screen1"
  133. Device "Card1"
  134. Monitor "Monitor1"
  135. SubSection "Display"
  136. Viewport 0 0
  137. Depth 1
  138. EndSubSection
  139. SubSection "Display"
  140. Viewport 0 0
  141. Depth 4
  142. EndSubSection
  143. SubSection "Display"
  144. Viewport 0 0
  145. Depth 8
  146. EndSubSection
  147. SubSection "Display"
  148. Viewport 0 0
  149. Depth 15
  150. EndSubSection
  151. SubSection "Display"
  152. Viewport 0 0
  153. Depth 16
  154. EndSubSection
  155. SubSection "Display"
  156. Viewport 0 0
  157. Depth 24
  158. EndSubSection
  159. EndSection
Advertisement
Add Comment
Please, Sign In to add comment