Advertisement
AnthonyAMC

Multiseat xorg.conf

Sep 29th, 2012
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.17 KB | None | 0 0
  1. Section "ServerFlags"
  2. Option "DefaultServerLayout" "DualHead"
  3. Option "Xinerama" "0"
  4. Option "AllowEmptyInput" "1"
  5. Option "AutoEnableDevices" "1"
  6. Option "AutoAddDevices" "1"
  7. EndSection
  8.  
  9. Section "ServerLayout"
  10. Identifier "DualHead"
  11. Screen 0 "Screen0" 1600 0
  12. Screen 1 "Screen1" LeftOf "Screen0"
  13. InputDevice "Keyboard0" "CoreKeyboard"
  14. InputDevice "Mouse0" "CorePointer"
  15. EndSection
  16.  
  17. Section "ServerLayout"
  18. Identifier "HTPC"
  19. Screen 2 "Screen2" 0 0
  20. InputDevice "Keyboard1" "CoreKeyboard"
  21. InputDevice "Mouse1" "CorePointer"
  22. EndSection
  23.  
  24. Section "Files"
  25. EndSection
  26.  
  27. Section "Module"
  28. Load "glx"
  29. EndSection
  30.  
  31. Section "InputDevice"
  32.  
  33. Identifier "Mouse0"
  34. Driver "mouse"
  35. Option "Protocol" "auto"
  36. Option "Device" "/dev/input/mouse2"
  37. Option "Emulate3Buttons" "no"
  38. Option "GrabDevice" "on"
  39. Option "ZAxisMapping" "4 5"
  40. EndSection
  41.  
  42. Section "InputDevice"
  43.  
  44. Identifier "Mouse1"
  45. Driver "mouse"
  46. Option "Protocol" "auto"
  47. Option "Device" "/dev/input/mouse1"
  48. Option "Emulate3Buttons" "no"
  49. Option "GrabDevice" "on"
  50. Option "ZAxisMapping" "4 5"
  51. EndSection
  52.  
  53. Section "InputDevice"
  54.  
  55. Identifier "Keyboard0"
  56. Driver "evdev"
  57. Option "Phys" "isa0060/serio0/input0"
  58. EndSection
  59.  
  60. Section "InputDevice"
  61.  
  62. Identifier "Keyboard1"
  63. Driver "evdev"
  64. Option "Device" "/dev/input/by-id/usb-04d9_1400-event-kbd"
  65. Option "Phys" "usb-0000:00:1a.2-1/input0"
  66. EndSection
  67.  
  68. Section "Monitor"
  69.  
  70. # HorizSync source: edid, VertRefresh source: edid
  71. Identifier "Monitor0"
  72. VendorName "Unknown"
  73. ModelName "hp L2035"
  74. HorizSync 30.0 - 76.0
  75. VertRefresh 48.0 - 85.0
  76. Option "DPMS"
  77. EndSection
  78.  
  79. Section "Monitor"
  80. Identifier "Monitor1"
  81. VendorName "Unknown"
  82. ModelName "Gateway HX2000"
  83. HorizSync 31.0 - 83.0
  84. VertRefresh 56.0 - 76.0
  85. EndSection
  86.  
  87. Section "Monitor"
  88. Identifier "Monitor2"
  89. VendorName "Unknown"
  90. ModelName "BBY TV"
  91. HorizSync 15.0 - 68.0
  92. VertRefresh 58.0 - 62.0
  93. EndSection
  94.  
  95. Section "Device"
  96. Identifier "Device0"
  97. Driver "nvidia"
  98. VendorName "NVIDIA Corporation"
  99. BoardName "GeForce GT 430"
  100. BusID "PCI:1:0:0"
  101. Screen 0
  102. EndSection
  103.  
  104. Section "Device"
  105. Identifier "Device1"
  106. Driver "nvidia"
  107. VendorName "NVIDIA Corporation"
  108. BoardName "GeForce GT 430"
  109. BusID "PCI:1:0:0"
  110. Screen 1
  111. EndSection
  112.  
  113. Section "Device"
  114. Identifier "Device2"
  115. Driver "nvidia"
  116. VendorName "NVIDIA Corporation"
  117. BoardName "GeForce GT 430"
  118. BusID "PCI:6:0:0"
  119. EndSection
  120.  
  121. Section "Screen"
  122. Identifier "Screen0"
  123. Device "Device0"
  124. Monitor "Monitor0"
  125. DefaultDepth 24
  126. Option "NoLogo" "True"
  127. Option "Coolbits" "5"
  128. # Option "DoubleBuffer" "True"
  129. Option "TripleBuffer" "True"
  130. Option "TwinView" "0"
  131. Option "TwinViewXineramaInfoOrder" "CRT-0"
  132. Option "metamodes" "nvidia-auto-select +0+0"
  133. SubSection "Display"
  134. Depth 24
  135. EndSubSection
  136. EndSection
  137.  
  138. Section "Screen"
  139. Identifier "Screen1"
  140. Device "Device1"
  141. Monitor "Monitor1"
  142. DefaultDepth 24
  143. Option "TwinViewXineramaInfoOrder" "CRT-1"
  144. Option "TwinView" "0"
  145. Option "metamodes" "nvidia-auto-select +0+0"
  146. SubSection "Display"
  147. Depth 24
  148. EndSubSection
  149. EndSection
  150.  
  151. Section "Screen"
  152. Identifier "Screen2"
  153. Device "Device2"
  154. Monitor "Monitor2"
  155. DefaultDepth 24
  156. Option "TwinView" "0"
  157. Option "metamodes" "nvidia-auto-select +0+0"
  158. SubSection "Display"
  159. Depth 24
  160. EndSubSection
  161. EndSection
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement