spacepaste

  1.  
  2. # Match on all types of devices but tablet devices and joysticks
  3. Section "InputClass"
  4. Identifier "libinput pointer catchall"
  5. MatchIsPointer "on"
  6. MatchDevicePath "/dev/input/event*"
  7. Driver "libinput"
  8. EndSection
  9. Section "InputClass"
  10. Identifier "libinput keyboard catchall"
  11. MatchIsKeyboard "on"
  12. MatchDevicePath "/dev/input/event*"
  13. Driver "libinput"
  14. EndSection
  15. Section "InputClass"
  16. Identifier "libinput touchpad catchall"
  17. MatchIsTouchpad "on"
  18. MatchDevicePath "/dev/input/event*"
  19. Driver "libinput"
  20. EndSection
  21. Section "InputClass"
  22. Identifier "libinput touchscreen catchall"
  23. MatchIsTouchscreen "on"
  24. MatchDevicePath "/dev/input/event*"
  25. Driver "libinput"
  26. EndSection
  27. Section "InputClass"
  28. Identifier "libinput tablet catchall"
  29. MatchIsTablet "on"
  30. MatchDevicePath "/dev/input/event*"
  31. Driver "libinput"
  32. EndSection
  33.