10-input.conf 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. Section "InputClass"
  2. Identifier "Keyboard0"
  3. MatchIsKeyboard "yes"
  4. MatchDevicePath "/dev/input/event*"
  5. Driver "libinput"
  6. # List of all options: </usr/share/X11/xkb/rules/base.lst>.
  7. Option "XkbLayout" "us,ru,us"
  8. Option "XkbVariant" "dvorak,,"
  9. # 'pointerkeys' are enabled by "Shift+NumLock" (mouse is manipulated
  10. # with numpad).
  11. Option "XkbOptions" "grp:rctrl_rshift_toggle, keypad:pointerkeys"
  12. Option "XkbModel" "microsoftmult"
  13. EndSection
  14. Section "InputClass"
  15. Identifier "Mouse0"
  16. MatchIsPointer "yes"
  17. MatchDevicePath "/dev/input/event*"
  18. NoMatchVendor "Telink"
  19. Driver "libinput"
  20. # The same as 'xset mouse 2 0':
  21. # Option "AccelerationNumerator" "2"
  22. # Option "AccelerationDenominator" "1"
  23. # Option "AccelerationThreshold" "0"
  24. # The above works with "evdev" driver but not "libinput", the
  25. # following option is specific to "libinput":
  26. Option "AccelSpeed" "1"
  27. EndSection
  28. Section "InputClass"
  29. Identifier "Telink USB Wireless Mouse"
  30. MatchIsPointer "yes"
  31. MatchVendor "Telink"
  32. MatchProduct "Wireless Receiver"
  33. Driver "libinput"
  34. Option "AccelSpeed" "-0.4"
  35. EndSection
  36. Section "InputClass"
  37. Identifier "Touchpad0"
  38. MatchIsTouchpad "yes"
  39. MatchDevicePath "/dev/input/event*"
  40. Driver "libinput"
  41. Option "Tapping" "yes"
  42. Option "TappingDrag" "yes"
  43. EndSection