Advertisement
Guest User

xorg.conf

a guest
May 24th, 2020
325
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.63 KB | None | 0 0
  1. Section "ServerLayout"
  2. Identifier "X.org Configured"
  3. Screen 0 "Screen0" 0 0
  4. InputDevice "Mouse0" "CorePointer"
  5. InputDevice "Keyboard0" "CoreKeyboard"
  6. EndSection
  7.  
  8. Section "Files"
  9. ModulePath "/usr/lib/xorg/modules"
  10. FontPath "/usr/share/fonts/misc"
  11. FontPath "/usr/share/fonts/TTF"
  12. FontPath "/usr/share/fonts/OTF"
  13. FontPath "/usr/share/fonts/Type1"
  14. FontPath "/usr/share/fonts/100dpi"
  15. FontPath "/usr/share/fonts/75dpi"
  16. EndSection
  17.  
  18. Section "Module"
  19. Load "glx"
  20. EndSection
  21.  
  22. Section "InputDevice"
  23. Identifier "Keyboard0"
  24. Driver "kbd"
  25. EndSection
  26.  
  27. Section "InputDevice"
  28. Identifier "Mouse0"
  29. Driver "mouse"
  30. Option "Protocol" "auto"
  31. Option "Device" "/dev/input/mice"
  32. Option "ZAxisMapping" "4 5 6 7"
  33. EndSection
  34.  
  35. Section "Monitor"
  36. Identifier "Monitor-HDMI-A-1"
  37. VendorName "Monitor Vendor"
  38. ModelName "Monitor Model"
  39. # Option "Enable" "True"
  40. EndSection
  41.  
  42. Section "Monitor"
  43. Identifier "Monitor1"
  44. VendorName "Monitor Vendor"
  45. ModelName "Monitor Model"
  46. # Option "Enable" "True"
  47. EndSection
  48.  
  49.  
  50. Section "Device"
  51. ### Available Driver options are:-
  52. ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
  53. ### <string>: "String", <freq>: "<f> Hz/kHz/MHz",
  54. ### <percent>: "<f>%"
  55. ###[arg]: primary
  56. Option "Accel" "True" # [<bool>]
  57. #Option "SWcursor" # [<bool>]
  58. #Option "EnablePageFlip" # [<bool>]
  59. #Option "SubPixelOrder" # [<str>]
  60. #Option "ZaphodHeads" # <str>
  61. #Option "AccelMethod" # <str>
  62. Option "DRI3" "True" # [<bool>]
  63. #Option "DRI" # <i>
  64. #Option "ShadowPrimary" # [<bool>]
  65. Option "TearFree" "True" # [<bool>]
  66. #Option "DeleteUnusedDP12Displays" # [<bool>]
  67. #Option "VariableRefresh" # [<bool>]
  68. Identifier "Card0"
  69. Driver "amdgpu"
  70. BusID "PCI:6:0:0"
  71. EndSection
  72.  
  73. Section "Device"
  74. ### Available Driver options are:-
  75. ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
  76. ### <string>: "String", <freq>: "<f> Hz/kHz/MHz",
  77. ### <percent>: "<f>%"
  78. ### [arg]: arg optional
  79. #Option "SWcursor" # [<bool>]
  80. #Option "HWcursor" # [<bool>]
  81. #Option "NoAccel" # [<bool>]
  82. #Option "ShadowFB" # [<bool>]
  83. #Option "VideoKey" # <i>
  84. #Option "WrappedFB" # [<bool>]
  85. #Option "GLXVBlank" # [<bool>]
  86. #Option "ZaphodHeads" # <str>
  87. #Option "PageFlip" # [<bool>]
  88. #Option "SwapLimit" # <i>
  89. #Option "AsyncUTSDFS" # [<bool>]
  90. #Option "AccelMethod" # <str>
  91. #Option "DRI" # <i>
  92. Identifier "Card1"
  93. Driver "nouveau"
  94. BusID "PCI:5:0:0"
  95. EndSection
  96.  
  97. Section "Screen"
  98. Identifier "Screen0"
  99. Device "Card0"
  100. Monitor "Monitor-HDMI-A-1"
  101. SubSection "Display"
  102. Viewport 0 0
  103. Depth 24
  104. EndSubSection
  105. EndSection
  106.  
  107. Section "Screen"
  108. Identifier "Screen0"
  109. Device "Card1"
  110. Monitor "Monitor1"
  111. SubSection "Display"
  112. Viewport 1920 0
  113. Depth 24
  114. EndSubSection
  115. EndSection
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement