Advertisement
kijato

Xorg.conf - Intel VGA & Left+Right rotated multihead

Jan 15th, 2020
3,225
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   "HP E243"
  17.     ModelName    "3469"
  18.     Option       "Rotate" "Left"
  19. EndSection
  20.  
  21. Section "Monitor"
  22.     Identifier   "Monitor1"
  23.     VendorName   "HP E243"
  24.     ModelName    "346a"
  25.     Option       "RightOf" "Monitor0"
  26.     Option       "Rotate" "Right"
  27. EndSection
  28.  
  29. Section "Device"
  30.     Identifier  "Card0"
  31.     Driver      "intel"
  32.     BusID       "PCI:0:2:0"
  33.     Option  "Monitor-HDMI2" "Monitor0"
  34.     Option  "Monitor-VGA1" "Monitor1"
  35. EndSection
  36.  
  37. Section "Screen"
  38.     Identifier "Screen0"
  39.     Device     "Card0"
  40.     Monitor    "Monitor0"
  41. EndSection
  42.  
  43. Section "ServerLayout"
  44.     Identifier     "Manual Configured"
  45.     Screen      0  "Screen0" 0 0
  46.     InputDevice    "Mouse0" "CorePointer"
  47.     InputDevice    "Keyboard0" "CoreKeyboard"
  48. EndSection
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement