Advertisement
Guest User

Untitled

a guest
Jun 20th, 2019
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.07 KB | None | 0 0
  1. # Match on all types of devices but 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 "NaturalScrolling" "on"
  23. Option "ScrollMethod" "twofinger"
  24. Option "TappingButtonMap" "lrm"
  25. EndSection
  26.  
  27. Section "InputClass"
  28. Identifier "libinput touchscreen catchall"
  29. MatchIsTouchscreen "on"
  30. MatchDevicePath "/dev/input/event*"
  31. Driver "libinput"
  32. EndSection
  33.  
  34. Section "InputClass"
  35. Identifier "libinput tablet catchall"
  36. MatchIsTablet "on"
  37. MatchDevicePath "/dev/input/event*"
  38. Driver "libinput"
  39. EndSection
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement