Advertisement
Guest User

xorg.config multi

a guest
Apr 10th, 2012
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.43 KB | None | 0 0
  1. Section "ServerFlags"
  2. Option "DontZap" "false"
  3. Option "AutoAddDevices" "false"
  4. Option "AutoEnableDevices" "false"
  5. Option "AllowMouseOpenFail" "on"
  6. Option "ZapWarning" "on"
  7. Option "DefaultServerLayout" "Seat0"
  8. Option "HandleSpecialKeys" "on" # Zapping on
  9. Option "DontZoom" "false" # <Ctrl><Alt>resolution
  10. Option "DRI2" "on"
  11. EndSection
  12.  
  13. Section "ServerLayout"
  14. Identifier "Seat0"
  15. Screen "Screen0" 0 0
  16. InputDevice "USBMouse" "CorePointer"
  17. InputDevice "USBKeyboard" "CoreKeyboard"
  18. Option "Clone" "off"
  19. Option "Xinerama" "off"
  20. Option "AutoAddDevices" "off"
  21. EndSection
  22.  
  23. Section "ServerLayout"
  24. Identifier "Seat1"
  25. Screen "Screen1" 0 0
  26. InputDevice "PS2Keyboard" "CoreKeyboard"
  27. InputDevice "PS2Mouse" "CorePointer"
  28. Option "Clone" "off"
  29. Option "Xinerama" "off"
  30. Option "AutoAddDevices" "off"
  31. EndSection
  32.  
  33. Section "Files"
  34. ModulePath "/usr/lib64/xorg/opengl/xorg-x11"
  35. ModulePath "/usr/lib64/xorg/opengl/xorg-x11/extentions"
  36. ModulePath "/usr/lib64/xorg/modules/extentions"
  37. ModulePath "/usr/lib64/xorg/modules"
  38. FontPath "/usr/share/fonts/misc/"
  39. FontPath "/usr/share/fonts/TTF/"
  40. FontPath "/usr/share/fonts/OTF/"
  41. FontPath "/usr/share/fonts/Type1/"
  42. FontPath "/usr/share/fonts/100dpi/"
  43. FontPath "/usr/share/fonts/75dpi/"
  44. EndSection
  45.  
  46. Section "Module"
  47. Load "extmod"
  48. Load "record"
  49. Load "glx"
  50. Load "dbe"
  51. Disable "dri"
  52. EndSection
  53.  
  54. Section "InputDevice"
  55. Identifier "PS2Keyboard"
  56. Driver "evdev"
  57. Option "Device" "/dev/input/by-path/pci-0000:00:02.0-usb-0:2:1.0-event-kbd"
  58. EndSection
  59.  
  60. Section "InputDevice"
  61. Identifier "USBKeyboard"
  62. Driver "evdev"
  63. Option "Device" "/dev/input/by-path/platform-i8042-serio-0-event-kbd"
  64. EndSection
  65.  
  66. Section "InputDevice"
  67. Identifier "PS2Mouse"
  68. Driver "evdev" # help.ubuntu.com
  69. Option "Device" "/dev/input/by-path/pci-0000:00:02.0-usb-0:2:1.1-event-mouse"
  70. Option "GrabDevice" "on" # help.ubuntu.com
  71. EndSection
  72.  
  73. Section "InputDevice"
  74. Identifier "USBMouse"
  75. Driver "evdev" # help.ubuntu.com
  76. Option "Device" "/dev/input/by-path/pci-0000:00:04.0-usb-0:3:1.0-event-mouse"
  77. EndSection
  78.  
  79. Section "Monitor"
  80. Identifier "Monitor0"
  81. VendorName "Unknown"
  82. ModelName "AOC 2217"
  83. HorizSync 31.0 - 80.0
  84. VertRefresh 56.0 - 75.0
  85. EndSection
  86.  
  87. Section "Monitor"
  88. Identifier "Monitor1"
  89. VendorName "Unknown"
  90. ModelName "CRT-0"
  91. HorizSync 28.0 - 55.0
  92. VertRefresh 43.0 - 72.0
  93. EndSection
  94.  
  95. Section "Device"
  96. Identifier "Card0"
  97. Driver "nvidia"
  98. EndSection
  99.  
  100. Section "Device"
  101. Identifier "Device0"
  102. Driver "nvidia"
  103. VendorName "NVIDIA Corporation"
  104. BoardName "GeForce 9600 GT"
  105. BusID "PCI:3:0:0"
  106. EndSection
  107.  
  108. Section "Device"
  109. Identifier "Device1"
  110. Driver "nvidia"
  111. VendorName "NVIDIA Corporation"
  112. BoardName "nForce 750a SLI"
  113. BusID "PCI:2:0:0"
  114. EndSection
  115.  
  116. Section "Screen"
  117. Identifier "Screen0"
  118. Device "Device0"
  119. Monitor "Monitor0"
  120. DefaultDepth 24
  121. Option "TwinView" "0"
  122. Option "TwinViewXineramaInfoOrder" "DFP-0"
  123. Option "metamodes" "nvidia-auto-select +0+0"
  124. SubSection "Display"
  125. Depth 24
  126. EndSubSection
  127. EndSection
  128.  
  129. Section "Screen"
  130. Identifier "Screen1"
  131. Device "Device1"
  132. Monitor "Monitor1"
  133. DefaultDepth 24
  134. Option "TwinViewXineramaInfoOrder" "DFP-0"
  135. Option "TwinView" "0"
  136. Option "metamodes" "nvidia-auto-select +0+0"
  137. SubSection "Display"
  138. Depth 24
  139. EndSubSection
  140. EndSection
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement