Advertisement
Guest User

Untitled

a guest
May 24th, 2019
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.39 KB | None | 0 0
  1. # Match on all types of devices but joysticks
  2. #
  3. # If you want to configure your devices, do not copy this file.
  4. # Instead, use a config snippet that contains something like this:
  5. #
  6. # Section "InputClass"
  7. # Identifier "something or other"
  8. # MatchDriver "libinput"
  9. #
  10. # MatchIsTouchpad "on"
  11. # ... other Match directives ...
  12. # Option "someoption" "value"
  13. # EndSection
  14. #
  15. # This applies the option any libinput device also matched by the other
  16. # directives. See the xorg.conf(5) man page for more info on
  17. # matching devices.
  18.  
  19. Section "InputClass"
  20. Identifier "libinput pointer catchall"
  21. MatchIsPointer "on"
  22. MatchDevicePath "/dev/input/event*"
  23. Driver "libinput"
  24. EndSection
  25.  
  26. Section "InputClass"
  27. Identifier "libinput keyboard catchall"
  28. MatchIsKeyboard "on"
  29. MatchDevicePath "/dev/input/event*"
  30. Driver "libinput"
  31. EndSection
  32.  
  33. Section "InputClass"
  34. Identifier "libinput touchpad catchall"
  35. MatchIsTouchpad "on"
  36. MatchDevicePath "/dev/input/event*"
  37. Driver "libinput"
  38. EndSection
  39.  
  40. Section "InputClass"
  41. Identifier "libinput touchscreen catchall"
  42. MatchIsTouchscreen "on"
  43. MatchDevicePath "/dev/input/event*"
  44. Driver "libinput"
  45. EndSection
  46.  
  47. Section "InputClass"
  48. Identifier "libinput tablet catchall"
  49. MatchIsTablet "on"
  50. MatchDevicePath "/dev/input/event*"
  51. Driver "libinput"
  52. EndSection
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement