Advertisement
Guest User

Files in /{etc,usr/share}/X11/xorg.conf*

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