我刚刚从Ubuntu17.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调整,但没有选择禁用点击点击在图形界面。
如何在Ubuntu 17.10中禁用点击点击?
发布于 2017-11-11 08:41:43
是的,为了阻止这种行为,我倾向于运行:
#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。
发布于 2017-10-28 05:57:58
我也有同样的问题。为了解决这个问题,我使用两个脚本来打开和关闭触控板:
# from ~/bin/s0
synclient touchpadoff=0和
# from ~/bin/s1
synclient touchpadoff=1当我被游标从手掌上跳来跳去时,我Ctrl+Alt+T,s1,<Enter>,Ctrl+D。当我再次需要游标时,我运行s0 insted。
我真诚地希望有一个适当的解决办法,以及!我有更好的手掌检测和能力,禁用点击点击Ubuntu Gnome 17.04。
https://askubuntu.com/questions/967191
复制相似问题