如何在安装 xserver-xorg-input-libinput 的情况下允许在打字时移动光标?

如何在安装 xserver-xorg-input-libinput 的情况下允许在打字时移动光标?

自从我安装了 后xserver-xorg-input-libinput,虽然它解决了我的其他问题,但这意味着我无法在打字时移动光标。我正在运行带有 GNOME 3.20 的 Ubuntu GNOME 16.04,有办法解决这个问题吗?

答案1

是的,DisableWhileTyping中的选项xserver-xorg-input-libinput默认是启用的,为了禁用它并允许在键入时移动光标,只需在其中创建一个/etc/X11名为的目录xorg.conf.d,在其中创建一个名为的配置文件99-libinput-disable-dwt.conf,然后使其内容如下:

Section "InputClass"
   Identifier "Disable DWT"
   MatchDriver "libinput"
   Option "DisableWhileTyping" "off"
EndSection

然后重新启动 X。您也可以在运行时使用以下命令进行设置:

xinput set-prop "device name" "property name" 0

相关内容