Guest User

40-libinput.conf

a guest
Jul 26th, 2017
209
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  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. EndSection
  22.  
  23. Section "InputClass"
  24.         Identifier "libinput touchscreen catchall"
  25.         MatchIsTouchscreen "on"
  26.         MatchDevicePath "/dev/input/event*"
  27.         Driver "libinput"
  28. EndSection
  29.  
  30. Section "InputClass"
  31.         Identifier "libinput tablet catchall"
  32.         MatchIsTablet "on"
  33.         MatchDevicePath "/dev/input/event*"
  34.         Driver "libinput"
  35. EndSection
Add Comment
Please, Sign In to add comment