30-touchpad.conf 1.1 KB

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