Advertisement
Guest User

Untitled

a guest
Sep 6th, 2022
36
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.86 KB | None | 0 0
  1. #
  2. # Last Modification: Jan 26, 2021
  3. #
  4. # (c) Copyright 2021 Autodesk Canada Inc. / Autodesk, Inc.
  5. # All rights reserved.
  6. #
  7. # These coded instructions, statements, and computer programs contain
  8. # unpublished proprietary information written by Autodesk Canada Inc./
  9. # Autodesk, Inc. and are protected by Federal copyright law. They may
  10. # not be disclosed to third parties or copied or duplicated in any
  11. # form, in whole or in part, without the prior written consent of
  12. # Autodesk Canada Inc. / Autodesk, Inc.
  13. #
  14. #=============================================================================
  15. # Changes log:
  16. #-------------
  17. # - 2021/01/26 : New xorg.conf. Remove all custom screen; keep only 1 minimal
  18. # screen/device. No more resolution; this will now be managed
  19. # by OS/NVIDIA driver
  20. # - 2020/02/19 : Add option "HardDPMS" "False" on all devices
  21. #=============================================================================
  22.  
  23. Section "ServerLayout"
  24. Screen 0 "Screen Default 0" 0 0
  25. Screen 1 "Screen Dummy Dual GPU Screen" Relative "Screen Default 0" 0 0
  26.  
  27. Identifier "XFree86 Configured"
  28. EndSection
  29.  
  30. Section "Files"
  31. FontPath "unix/:7100"
  32. EndSection
  33.  
  34. Section "Module"
  35. Load "glx" # OpenGL X protocol interface
  36. Load "extmod" # Misc. required extensions
  37. EndSection
  38.  
  39. Section "ServerFlags"
  40. Option "VTSysReq" "on"
  41. Option "DontVTSwitch" "on"
  42. Option "DontZoom" "on"
  43. Option "AutoAddDevices" "True"
  44. Option "AutoAddGPU" "false"
  45. EndSection
  46.  
  47. Section "Extensions"
  48. # Option "Composite" "Disable"
  49. EndSection
  50.  
  51.  
  52. Section "InputClass"
  53. Identifier "Keyboard0"
  54. MatchIskeyboard "on"
  55. Option "XkbModel" "pc105"
  56. Option "XkbCompat" "basic+misc"
  57. Option "XkbLayout" "us"
  58. Option "XkbOptions" "terminate:ctrl_alt_bksp"
  59. EndSection
  60.  
  61.  
  62. Section "InputClass"
  63. Identifier "ERASER"
  64. MatchDriver "wacom"
  65. MatchProduct "eraser|Eraser|ERASER"
  66. Option "Mode" "Absolute"
  67. # Option "Rotate" "HALF"
  68. # Option "ScreenNo" "0"
  69. # Option "TwinView" "horizontal"
  70. EndSection
  71.  
  72. Section "InputClass"
  73. Identifier "cursor"
  74.  
  75. MatchDriver "wacom"
  76. MatchProduct "cursor|Cursor|CURSOR"
  77. # Option "Mode" "Absolute"
  78. # Option "Rotate" "HALF"
  79. # Option "ScreenNo" "0"
  80. # Option "TwinView" "horizontal"
  81. EndSection
  82.  
  83. Section "InputClass"
  84. Identifier "pad"
  85.  
  86. MatchDriver "wacom"
  87. MatchProduct "pad|Pad|PAD"
  88. Option "Mode" "Absolute"
  89. # Option "Rotate" "HALF"
  90. # Option "ScreenNo" "0"
  91. # Option "TwinView" "horizontal"
  92. EndSection
  93.  
  94.  
  95. Section "InputClass"
  96. Identifier "touch"
  97.  
  98. MatchDriver "wacom"
  99. MatchProduct "touch|Touch|TOUCH|Finger|finger|FINGER"
  100. # Option "Rotate" "HALF"
  101. # Option "ScreenNo" "0"
  102. # Option "TwinView" "horizontal"
  103. Option "Touch" "off"
  104. EndSection
  105.  
  106. Section "Monitor"
  107. Identifier "Generic EDID"
  108. VendorName "---"
  109. ModelName "NVIDIA Generic EDID"
  110. EndSection
  111.  
  112. Section "Device"
  113. Identifier "Dual GPU"
  114. Driver "nvidia"
  115. BoardName "Unknown"
  116. BusId "PCI:6:0:0"
  117. Option "UseDisplayDevice" "none"
  118. Option "Interactive" "False"
  119. Option "HardDPMS" "False"
  120. EndSection
  121.  
  122. Section "Monitor"
  123. Identifier "Generic 1920x1200 EDID"
  124. VendorName "---"
  125. ModelName "NVIDIA Generic 1920x1200 EDID"
  126. HorizSync 30.0 - 95.0
  127. VertRefresh 50.0 - 180.0
  128. EndSection
  129.  
  130. Section "Screen"
  131. Identifier "Screen Dummy Dual GPU Screen"
  132. Device "Dual GPU"
  133. Monitor "Generic 1920x1200 EDID"
  134. DefaultDepth 24
  135. SubSection "Display"
  136. Virtual 1920 1200
  137. Depth 24
  138. EndSubSection
  139. EndSection
  140.  
  141. Section "Monitor"
  142. Identifier "Generic Monitor"
  143. EndSection
  144.  
  145. Section "Device"
  146. Identifier "NVIDIA Generic"
  147. Driver "nvidia"
  148. Option "Overlay" "on"
  149. Option "HardDPMS" "False"
  150. Option "Interactive" "False"
  151. # Option "ModeValidation" "NoEdidMaxPClkCheck, NoHorizSyncCheck, NoVertRefreshCheck"
  152. # Option "ExactModeTimingsDVI" "True"
  153. # Option "TwinView" "true"
  154. # Option "UseDisplayDevice" "DFP-X"
  155. # Option "IncludeImplicitMetaModes" "False"
  156. # Option "nvidiaXineramaInfoOrder" "DFP-X"
  157. # Option "MetaModes" "DFP-X: X1RESxY1RES +X1OFFSET+0, DFP-Y: X2RESxY2RES +X2OFFSET+0"
  158. Option "BusID" "PCI:::"
  159. EndSection
  160.  
  161. Section "Screen"
  162. Identifier "Screen Default 0"
  163. Device "NVIDIA Generic"
  164. Monitor "Generic Monitor"
  165. DefaultDepth 24
  166. SubSection "Display"
  167. Depth 24
  168. EndSubSection
  169. EndSection
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement