Guest User

Untitled

a guest
Sep 6th, 2018
346
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.05 KB | None | 0 0
  1. avb@ds:~$ cat /usr/share/X11/xorg.conf.d/40-libinput.conf
  2. # Match on all types of devices but joysticks
  3. Section "InputClass"
  4. Identifier "libinput pointer catchall"
  5. MatchIsPointer "on"
  6. MatchDevicePath "/dev/input/event*"
  7. Driver "libinput"
  8. EndSection
  9.  
  10. Section "InputClass"
  11. Identifier "libinput keyboard catchall"
  12. MatchIsKeyboard "on"
  13. MatchDevicePath "/dev/input/event*"
  14. Driver "libinput"
  15. EndSection
  16.  
  17. Section "InputClass"
  18. Identifier "libinput touchpad catchall"
  19. MatchIsTouchpad "on"
  20. MatchDevicePath "/dev/input/event*"
  21. Driver "libinput"
  22. Option "Tapping" "true"
  23. EndSection
  24.  
  25. Section "InputClass"
  26. Identifier "libinput touchscreen catchall"
  27. MatchIsTouchscreen "on"
  28. MatchDevicePath "/dev/input/event*"
  29. Driver "libinput"
  30. EndSection
  31.  
  32. Section "InputClass"
  33. Identifier "libinput tablet catchall"
  34. MatchIsTablet "on"
  35. MatchDevicePath "/dev/input/event*"
  36. Driver "libinput"
  37. EndSection
Advertisement
Add Comment
Please, Sign In to add comment