我通常在 macOS 下使用 MacBook Air 上的直观触摸板选项(即点击以单击、三指滑动以更改桌面、三指向上滑动以显示窗口管理器......)并想在通过双击并移动光标选择文本时禁用 Ubuntu 注册的拖动操作。
我该怎么做?我找不到任何类似的问题,甚至不知道如何寻找答案。
是的,这也意味着双击桌面图标即可打开它们。我想我会直接双击它们而不点击。
答案1
如果你正在使用 X 和 libinput,我认为你正在寻找 TappingDrag 选项,该选项描述于https://wayland.freedesktop.org/libinput/doc/latest/tapping.html#tap-and-drag并显示在man libinput
:
Option "TappingDrag" "bool"
Enables or disables drag during tapping behavior ("tap-and-drag"). When enabled, a tap followed by a finger held down causes a single button down only, all motions of that finger thus
translate into dragging motion. Tap-and-drag requires option Tapping to be enabled.
您可以通过运行以下命令进行配置:
gsettings set org.gnome.desktop.peripherals.touchpad tap-and-drag false
答案2
请在正文中说明您的硬件。
代码/etc/X11/xorg.conf.d/10-synaptics.conf
来自[已解决] Synaptics 双击问题 - Linux再次尝试让双击功能在你的硬件上工作
Section "InputClass"
Identifier "touchpad catchall"
Driver "synaptics"
MatchIsTouchpad "on"
MatchDevicePath "/dev/input/event*"
Option "TapButton1" "1"
Option "TapButton2" "0"
Option "TapButton3" "0"
Option "VertEdgeScroll" "on"
Option "MaxDoubleTapTime" "100"
EndSection
这里不考虑用三根手指擦拭。
稳定性:在 OS X 级别上仍有很大改进空间
差异解决方案:KDE 有内置配置,因此可能支持得更好,已讨论这里对于 KDE
操作系统:Ubuntu 或 Debian 8.x/9.x
窗口管理器:Gnome 3.14 或更早版本