Advertisement
aerorange

40-libinput.conf from Linux Mint, but with mouse accel disabled

Dec 9th, 2020 (edited)
4,439
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. # Match on all types of devices but joysticks
  2. #
  3. # If you want to configure your devices, do not copy this file.
  4. # Instead, use a config snippet that contains something like this:
  5. #
  6. # Section "InputClass"
  7. #   Identifier "something or other"
  8. #   MatchDriver "libinput"
  9. #
  10. #   MatchIsTouchpad "on"
  11. #   ... other Match directives ...
  12. #   Option "someoption" "value"
  13. # EndSection
  14. #
  15. # This applies the option any libinput device also matched by the other
  16. # directives. See the xorg.conf(5) man page for more info on
  17. # matching devices.
  18.  
  19. Section "InputClass"
  20.         Identifier "libinput pointer catchall"
  21.         MatchIsPointer "on"
  22.         MatchDevicePath "/dev/input/event*"
  23.         Driver "libinput"
  24.         Option "AccelProfile" "flat"
  25.         Option "AccelSpeed" "0"
  26. EndSection
  27.  
  28. Section "InputClass"
  29.         Identifier "libinput keyboard catchall"
  30.         MatchIsKeyboard "on"
  31.         MatchDevicePath "/dev/input/event*"
  32.         Driver "libinput"
  33. EndSection
  34.  
  35. Section "InputClass"
  36.         Identifier "libinput touchpad catchall"
  37.         MatchIsTouchpad "on"
  38.         MatchDevicePath "/dev/input/event*"
  39.         Driver "libinput"
  40. EndSection
  41.  
  42. Section "InputClass"
  43.         Identifier "libinput touchscreen catchall"
  44.         MatchIsTouchscreen "on"
  45.         MatchDevicePath "/dev/input/event*"
  46.         Driver "libinput"
  47. EndSection
  48.  
  49. Section "InputClass"
  50.         Identifier "libinput tablet catchall"
  51.         MatchIsTablet "on"
  52.         MatchDevicePath "/dev/input/event*"
  53.         Driver "libinput"
  54. EndSection
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement