我觉得我什么都做了
1) sudo apt-get install xserver-xorg-input-libinput
2)创建/etc/X11/xorg.conf.d/60-libinput.conf并放置以下内容:
Section "InputClass"
Identifier "Touchpad"
MatchIsTouchpad "on"
Driver "libinput"
option "Tapping" "true"
option "NaturalScrolling" "false"
EndSection3)重新启动
但没有改变!点击点击不起作用,自然滚动仍在进行。我少了什么?我在xps 139360上运行Ubuntu 17.04。
发布于 2017-11-17 02:23:12
这是我的30-libinput.conf,供参考。
Section "InputClass"
Identifier "touchpad"
Driver "libinput"
MatchIsTouchpad "on"
Option "Tapping" "on"
Option "DisableWhileTyping" "on"
Option "TappingDrag" "off"
Option "NaturalScrolling" "on"
Option "TappingDragLock" "off"
EndSection我看到的唯一不同之处是选项的顺序,以及在标识符位中大写了Touchpad这个词的事实。有可能是那样的傻事。在我到达这个配置文件之前,我已经让linux拒绝使用配置错误的libinput配置文件启动。:)
注意:我刚刚查看了系统提供的40-libinput.conf和标识符都是小写,所以可能就是它。
https://askubuntu.com/questions/976949
复制相似问题