Advertisement
kijato

Xorg.conf - Intel i915 Multihead

Oct 3rd, 2019
3,191
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. Section "InputDevice"
  2.     Identifier  "Keyboard0"
  3.     Driver      "kbd"
  4. EndSection
  5.  
  6. Section "InputDevice"
  7.     Identifier  "Mouse0"
  8.     Driver      "mouse"
  9.     Option      "Protocol" "auto"
  10.     Option      "Device" "/dev/input/mice"
  11.     Option      "ZAxisMapping" "4 5 6 7"
  12. EndSection
  13.  
  14. Section "Monitor"
  15.     Identifier   "Monitor0"
  16.     VendorName   "BenQ"
  17.     ModelName    "GW2760"
  18. EndSection
  19.  
  20. Section "Monitor"
  21.     Identifier   "Monitor1"
  22.     VendorName   "BenQ"
  23.     ModelName    "GW2760"
  24.     Option  "RightOf" "Monitor0"
  25. EndSection
  26.  
  27. Section "Device"
  28.     Identifier  "Card0"
  29.     Driver      "intel"
  30.     BusID       "PCI:0:2:0"
  31.     Option  "Monitor-DP1" "Monitor0"
  32.     Option  "Monitor-HDMI1" "Monitor1"
  33. EndSection
  34.  
  35. Section "Screen"
  36.     Identifier "Screen0"
  37.     Device     "Card0"
  38.     Monitor    "Monitor0"
  39. EndSection
  40.  
  41. Section "ServerLayout"
  42.     Identifier     "X.org Configured"
  43.     Screen      0  "Screen0" 0 0
  44.     InputDevice    "Mouse0" "CorePointer"
  45.     InputDevice    "Keyboard0" "CoreKeyboard"
  46. EndSection
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement