Advertisement
Guest User

xorg share config files

a guest
May 11th, 2019
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.17 KB | None | 0 0
  1. Section "OutputClass"
  2. Identifier "intel"
  3. MatchDriver "i915"
  4. Driver "modesetting"
  5. EndSection
  6.  
  7. Section "OutputClass"
  8. Identifier "nvidia"
  9. MatchDriver "nvidia-drm"
  10. Driver "nvidia"
  11. Option "AllowEmptyInitialConfiguration"
  12. Option "PrimaryGPU" "yes"
  13. ModulePath "/usr/lib/nvidia/xorg"
  14. ModulePath "/usr/lib/xorg/modules"
  15. EndSection
  16. # Collection of quirks and blacklist/whitelists for specific devices.
  17.  
  18.  
  19. # Accelerometer device, posts data through ABS_X/ABS_Y, making X unusable
  20. # http://bugs.freedesktop.org/show_bug.cgi?id=22442
  21. Section "InputClass"
  22. Identifier "ThinkPad HDAPS accelerometer blacklist"
  23. MatchProduct "ThinkPad HDAPS accelerometer data"
  24. Option "Ignore" "on"
  25. EndSection
  26.  
  27. # https://bugzilla.redhat.com/show_bug.cgi?id=523914
  28. # Mouse does not move in PV Xen guest
  29. # Explicitly tell evdev to not ignore the absolute axes.
  30. Section "InputClass"
  31. Identifier "Xen Virtual Pointer axis blacklist"
  32. MatchProduct "Xen Virtual Pointer"
  33. Option "IgnoreAbsoluteAxes" "off"
  34. Option "IgnoreRelativeAxes" "off"
  35. EndSection
  36.  
  37. # https://bugs.freedesktop.org/show_bug.cgi?id=55867
  38. # Bug 55867 - Doesn't know how to tag XI_TRACKBALL
  39. Section "InputClass"
  40. Identifier "Tag trackballs as XI_TRACKBALL"
  41. MatchProduct "trackball"
  42. MatchDriver "evdev"
  43. Option "TypeName" "TRACKBALL"
  44. EndSection
  45.  
  46. # https://bugs.freedesktop.org/show_bug.cgi?id=62831
  47. # Bug 62831 - Mionix Naos 5000 mouse detected incorrectly
  48. Section "InputClass"
  49. Identifier "Tag Mionix Naos 5000 mouse XI_MOUSE"
  50. MatchProduct "La-VIEW Technology Naos 5000 Mouse"
  51. MatchDriver "evdev"
  52. Option "TypeName" "MOUSE"
  53. EndSection
  54. # Match on all types of devices but joysticks
  55. #
  56. # If you want to configure your devices, do not copy this file.
  57. # Instead, use a config snippet that contains something like this:
  58. #
  59. # Section "InputClass"
  60. # Identifier "something or other"
  61. # MatchDriver "libinput"
  62. #
  63. # MatchIsTouchpad "on"
  64. # ... other Match directives ...
  65. # Option "someoption" "value"
  66. # EndSection
  67. #
  68. # This applies the option any libinput device also matched by the other
  69. # directives. See the xorg.conf(5) man page for more info on
  70. # matching devices.
  71.  
  72. Section "InputClass"
  73. Identifier "libinput pointer catchall"
  74. MatchIsPointer "on"
  75. MatchDevicePath "/dev/input/event*"
  76. Driver "libinput"
  77. EndSection
  78.  
  79. Section "InputClass"
  80. Identifier "libinput keyboard catchall"
  81. MatchIsKeyboard "on"
  82. MatchDevicePath "/dev/input/event*"
  83. Driver "libinput"
  84. EndSection
  85.  
  86. Section "InputClass"
  87. Identifier "libinput touchpad catchall"
  88. MatchIsTouchpad "on"
  89. MatchDevicePath "/dev/input/event*"
  90. Driver "libinput"
  91. EndSection
  92.  
  93. Section "InputClass"
  94. Identifier "libinput touchscreen catchall"
  95. MatchIsTouchscreen "on"
  96. MatchDevicePath "/dev/input/event*"
  97. Driver "libinput"
  98. EndSection
  99.  
  100. Section "InputClass"
  101. Identifier "libinput tablet catchall"
  102. MatchIsTablet "on"
  103. MatchDevicePath "/dev/input/event*"
  104. Driver "libinput"
  105. EndSection
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement