我的触摸板在打字时不会被禁用,这非常烦人,因为它会在我打字时随机将光标放在其他地方。
有什么方法/插件可以让我在打字时禁用触摸板
笔记本电脑:联想 E450 Ubuntu:18.04(可在 Ubuntu 的早期版本上运行)
答案1
您应该能够使用 来启用/禁用此功能gnome-tweak-tool
。如果您需要安装gnome-tweak-tool
,您可以通过终端进行安装:
$ sudo apt install gnome-tweak-tool
然后运行tweaks
,导航到Keyboard & Mouse
-部分。在touchpad
标题下,将开关切换Disable While Typing
到on
。
如果这仍然不起作用,您可以添加一个新文件/usr/share/X11/xorg.conf.d
并将其命名90-libinput-quirks.conf
为以下内容
Section "InputClass"
Identifier "libinput touchpad catchall"
MatchIsTouchpad "on"
MatchDevicePath "/dev/input/event*"
Driver "libinput"
Option "DisableWhileTyping" "True"
EndSection
libinput.conf
文件名本身非常重要,它需要以比Ubuntu 18.04 捆绑文件更高的数字开头。我的文件已命名40-libinput.conf
,因此我将其命名90-libinput-quirks.conf
以确保它在原始配置之后加载,从而覆盖/附加原始配置。
或者,您也可以像上面一样将添加到默认文件中的Option "DisableWhileTyping" "True"
部分。我不确定默认配置文件是否可以被更新之类的东西覆盖,所以我更喜欢第一种方法。Identifier "libinput touchpad catchall"
40-libinput.conf