如何在基于 KDE5/plasma 的安装上禁用“点击”(触摸板)? (当前使用 KDE neon)

如何在基于 KDE5/plasma 的安装上禁用“点击”(触摸板)? (当前使用 KDE neon)

我正在查看“系统设置”=>“输入设备”=>“触摸板”,但没有任何内容跳出。

在 Ubuntu/Unity 上,当想要玩“点击点击”时,使用哪个设置是显而易见的。

谢谢

答案1

正如所回答的这里

要永久启用触摸板点击,请将文件复制 50-synaptics.conf/etc/X11/xorg.conf.d然后通过添加进行编辑Option "TapButton1" "1"

cp /usr/share/X11/xorg.conf.d/50-synaptics.conf /etc/X11/xorg.conf.d/50-synaptics.conf

应该/etc/X11/xorg.conf.d/50-synaptics.conf是:

Section "InputClass"
        Identifier "touchpad catchall"
        Driver "synaptics"
        MatchIsTouchpad "on"
        Option "TapButton1" "1"
        Option "TapButton2" "3"

重新启动您的系统

在您的情况下,将 TapButton1 设置为 0 ,如下所示

Section "InputClass"
        Identifier "touchpad catchall"
        Driver "synaptics"
        MatchIsTouchpad "on"
        Option "TapButton1" "0"

相关内容