Advertisement
Guest User

90-libinput.conf

a guest
Jan 31st, 2017
1,550
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.19 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 trackpoint catchall"
  11.         MatchIsPointer "on"
  12.         MatchProduct "TPPS/2 IBM TrackPoint"
  13.         MatchDevicePath "/dev/input/event*"
  14.         Driver "libinput"
  15.         Option "AccelSpeed" "-0.44"
  16. EndSection
  17.  
  18. Section "InputClass"
  19.         Identifier "libinput keyboard catchall"
  20.         MatchIsKeyboard "on"
  21.         MatchDevicePath "/dev/input/event*"
  22.         Driver "libinput"
  23. EndSection
  24.  
  25. Section "InputClass"
  26.         Identifier "libinput touchpad catchall"
  27.         MatchIsTouchpad "on"
  28.         MatchDevicePath "/dev/input/event*"
  29.         Driver "libinput"
  30.         Option "AccelSpeed" "-0.24"
  31.         Option "ClickMethod" "clickfinger"
  32.         Option "DisableWhileTyping" "True"
  33.         Option "NaturalScrolling" "True"
  34.         Option "Tapping" "True"
  35. EndSection
  36.  
  37. Section "InputClass"
  38.         Identifier "libinput touchscreen catchall"
  39.         MatchIsTouchscreen "on"
  40.         MatchDevicePath "/dev/input/event*"
  41.         Driver "libinput"
  42. EndSection
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement