我在这里找到了一个非常好的答案,如果它有效的话会很棒: https://askubuntu.com/a/820098/134500
我想使用libinput
它来使滚动以及其他触控板和指点功能正常工作。当我尝试启用它时,不幸的是键盘 + 触控板 (罗技 K400+)完全停止工作。
我有/etc/X11/xorg.conf.d
:
20-触摸板.conf:
Section "InputClass"
Identifier "libinput touchpad catchall"
MatchIsTouchpad "on"
MatchDevicePath "/dev/input/event*"
Driver "libinput"
Option "NaturalScrolling" "on"
Option "MiddleEmulation" "on"
Option "Tapping" "off"
Option "DisableWhileTyping" "on"
EndSection
30-指针.conf
Section "InputClass"
Identifier "libinput pointer catchall"
MatchIsPointer "on"
MatchDevicePath "/dev/input/event*"
Driver "libinput"
Option "NaturalScrolling" "on"
EndSection
我以为这libinput
在 16.04 上已经激活了,但是,如前所述,键盘输入完全停止了。我在日志中没有看到问题。关于如何确保它libinput
正常工作以及如何让它与这款 Logitech K400+ 配合使用,您有什么想法吗?
也许libinput
只有 Wayland 才有这个问题,而且由于运行的是 xorg,所以在这种情况下,这就是难题?如果是这样,那么正确的方法是什么?