我刚刚从 Ubuntu 17.04 升级到 17.10,我正在尝试找出如何禁用“点击”功能。
这对我以前的 Ubuntu 版本有用:
gsettings set org.gnome.desktop.peripherals.touchpad tap-to-click false
...但是在 17.10 上,我收到此错误:
(process:6941): dconf-WARNING **: failed to commit changes to dconf: The connection is closed
我还检查了系统对话框和 Ubuntu Tweak,但没有在图形界面中禁用点击功能的选项。
如何在 Ubuntu 17.10 中禁用点击功能?
答案1
好的,为了禁用此行为,我倾向于运行:
#Disable tap to click
synclient MaxTapTime=0
#Disable drag
synclient TapAndDragGesture=0
#enable palm detection
synclient PalmDetect=1
为了使其坚持下去,我们可以将桌面文件添加到 ~/.config/autostart 例如“touchpad.desktop”:
Version=1.0
Type=Application
Name=Touchpadset
Icon=Icon
Exec="synclient MaxTapTime=0 && synclient TapAndDragGesture=0 && synclient PalmDetect=1"
Comment=Set touchpad options
Categories=Login
Terminal=false
这应该一直有效直到 ubuntu 切换到 libinput。
答案2
我有同样的问题。为了解决这个问题,我使用两个脚本来打开和关闭触摸板:
# from ~/bin/s0
synclient touchpadoff=0
和
# from ~/bin/s1
synclient touchpadoff=1
当我因为光标在我手掌处跳来跳去而感到烦恼时,我会,,,Ctrl+Alt+T
。当我再次需要光标时,我会运行。s1
<Enter>
Ctrl+D
s0
我也真心希望能有一个合适的修复!我最好有手掌检测和在 Ubuntu Gnome 17.04 上禁用点击功能的能力。