小智 13
我在运行 Kubuntu 20.04 LTS 的 Razer Blade 15(2021 年中)上遇到了同样的问题。
对我来说,解决方法是安装 synaptics 触摸板驱动程序。
sudo apt update
sudo apt install xserver-xorg-input-synaptics
Run Code Online (Sandbox Code Playgroud)
重启
小智 5
参考:https ://askubuntu.com/questions/1179275/enable-tap-to-click-kubuntu
我不得不添加Option "Tapping" "True"
到MatchIsTouchpad
文件中的条目/usr/share/X11/xorg.conf.d/40-libinput.conf
。对于其他人来说,文件的确切名称可能会有所不同。
最后,相关部分将如下所示:
Section "InputClass"
Identifier "libinput touchpad catchall"
MatchIsTouchpad "on"
Option "Tapping" "True"
MatchDevicePath "/dev/input/event*"
Driver "libinput"
EndSection
Run Code Online (Sandbox Code Playgroud)
您需要以 root 身份编辑文件并在更改后重新启动系统!