我的笔记本电脑上的触摸板设计很差,因为它没有缩进外壳中,以避免我的大鱼际和小鱼际无意中点击。
在 Ubuntu 19.10 中,使用同一台笔记本电脑,我能够关闭“点击以单击”,如图所示这里。
但是,在 Kubuntu 20.04 中,此选项呈灰色(禁用),并且无法切换:
鉴于 GUI 不提供切换此设置的功能,是否有另一种方法可以禁用点击点击?
答案1
参考资料: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
您需要 root 权限才能编辑该文件并在更改后重新启动系统!
答案2
我在运行 Kubuntu 20.04 LTS 的 Razer Blade 15(2021 年中)上遇到了同样的问题。
对我来说,解决方法是安装 synaptics 触摸板驱动程序。
sudo apt update
sudo apt install xserver-xorg-input-synaptics
重启
答案3
目前,2022 年 6 月,使用架构Linux和KDE/等离子桌面环境,只需安装通用驱动程序即可解决该问题X组织,基于libinput
,并重新启动系统:
sudo pacman -S xf86-input-libinput
或者特定的 Synaptics 驱动程序:
sudo pacman -S xf86-input-synaptics
编辑:2022 年 10 月,我意识到上述内容在带有 KDE/Plasma 的 Arch Linux 上不再有效。还要考虑到xf86-输入突触不再主动更新(请参阅https://wiki.archlinux.org/title/Touchpad_Synaptics),建议使用库输入反而。
安装两个库输入和libinput 手势(这是来自 AUR)Arch Linux 上的软件包,明确解决了这个问题:
安装前者:
sudo pacman -S libinput
后者带有 AUR 助手:
yay -S libinput-gestures
答案4
适合使用 Fedora、AlmaLinux、Rocky 和其他 RedHat 发行版的用户。
将以下内容放入 /usr/share/X11/xorg.conf.d/40-libinput.conf 中,注意该文件不能为空。更多信息可以在这里找到https://docs.fedoraproject.org/en-US/quick-docs/enable-touchpad-click/
Section "InputClass"
Identifier "touchpad overrides"
# This makes this snippet apply to any device with the "synaptics" driver
# assigned
MatchDriver "synaptics"
####################################
## The lines that you need to add ##
# Enable left mouse button by tapping
Option "TapButton1" "1"
# Enable vertical scrolling
Option "VertEdgeScroll" "1"
# Enable right mouse button by tapping lower right corner
Option "RBCornerButton" "3"
####################################
EndSection