Advertisement
Guest User

xorg.conf (intel & nouveau + Multihead)

a guest
Jan 10th, 2020
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. # Kiindulási állapot:
  2. #   xorg.conf -> https://pastebin.com/9nz9Lz7e
  3. #   X.org.0.log -> https://pastebin.com/ZLQkAYBt
  4.  
  5. Section "ServerLayout"
  6.     Identifier     "X.org Configured"
  7.     Screen      0  "Screen0" 0 0
  8.     Screen      1  "Screen1" RightOf "Screen0"
  9.     InputDevice    "Mouse0" "CorePointer"
  10.     InputDevice    "Keyboard0" "CoreKeyboard"
  11. EndSection
  12.  
  13. Section "InputDevice"
  14.     Identifier  "Keyboard0"
  15.     Driver      "kbd"
  16. EndSection
  17.  
  18. Section "InputDevice"
  19.     Identifier  "Mouse0"
  20.     Driver      "mouse"
  21.     Option      "Protocol" "auto"
  22.     Option      "Device" "/dev/input/mice"
  23.     Option      "ZAxisMapping" "4 5 6 7"
  24. EndSection
  25.  
  26. Section "Monitor"
  27.     Identifier   "Monitor0"
  28.     VendorName   "Monitor Vendor"
  29.     ModelName    "Monitor Model"
  30. EndSection
  31.  
  32. Section "Monitor"
  33.     Identifier   "Monitor1"
  34.     VendorName   "Monitor Vendor"
  35.     ModelName    "Monitor Model"
  36.     Option       "RightOf" "Monitor0"
  37. EndSection
  38.  
  39. Section "Device"
  40.     Identifier  "Card0"
  41.     Driver      "intel"
  42.     BusID       "PCI:0:2:0"
  43.     Option      "Monitor-eDP1" "Monitor0"
  44.     Option      "Monitor-VIRTUAL1" "Monitor1"
  45. EndSection
  46.  
  47. Section "Device"
  48.     Identifier  "Card1"
  49.     Driver      "nouveau"
  50.     BusID       "PCI:1:0:0"
  51. EndSection
  52.  
  53. Section "Screen"
  54.     Identifier "Screen0"
  55.     Device     "Card0"
  56.     Monitor    "Monitor0"
  57. EndSection
  58.  
  59. Section "Screen"
  60.     Identifier "Screen1"
  61.     Device     "Card1"
  62.     # Monitor    "Monitor1"
  63. EndSection
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement