Advertisement
PurSiC

libinput

Aug 25th, 2019
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.26 KB | None | 0 0
  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.  
  9. Section "InputClass"
  10. Identifier "libinput keyboard catchall"
  11. MatchIsKeyboard "on"
  12. MatchDevicePath "/dev/input/event*"
  13. Driver "libinput"
  14. EndSection
  15.  
  16. Section "InputClass"
  17. Identifier "libinput touchpad catchall"
  18. MatchIsTouchpad "on"
  19. MatchDevicePath "/dev/input/event*"
  20. Driver "libinput"
  21. Option "Tapping" "on"
  22. Option "PalmDetection" "on"
  23. Option "TappingDrag" "on"
  24. Option "TappingButtonMap" "lrm"
  25. Option "AccelSpeed" "0.4"
  26. Option "ScrollMethod" "twofinger,edge"
  27. Option "NaturalScrolling" "on"
  28. Option "HorizontalScrolling" "on"
  29. Option "DisableWhileTyping" "on"
  30. EndSection
  31.  
  32. Section "InputClass"
  33. Identifier "libinput touchscreen catchall"
  34. MatchIsTouchscreen "on"
  35. MatchDevicePath "/dev/input/event*"
  36. Driver "libinput"
  37. EndSection
  38.  
  39. Section "InputClass"
  40. Identifier "libinput tablet catchall"
  41. MatchIsTablet "on"
  42. MatchDevicePath "/dev/input/event*"
  43. Driver "libinput"
  44. EndSection
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement