Ubuntu 14.04,如何设置中键鼠标模拟?(无点击,真实按钮)

Ubuntu 14.04,如何设置中键鼠标模拟?(无点击,真实按钮)

我查找了该主题,但只找到了有关如何使用 N 根手指点击模拟中键(滚轮点击)的信息。我想使用触控板下方的真实按钮和通过 USB 连接的鼠标进行模拟。对于这个主题,我看到在 中添加了标志/etc/X11/xorg.conf,但它似乎不存在/已在 Ubuntu 12.04 中移动

答案1

在以前的 Ubuntu 版本中,我曾经使用gpointing 设备设置。该软件包也适用于 14.04,因此我猜它仍然有效:

sudo apt-get install gpointing-device-settings
gpointing-device-settings

更新 1:gpointing-device-settings 在 14.04 上崩溃了。但我找到了一种解决方法,可以在 dconf 中手动启用中鼠标模拟:

sudo apt-get install dconf-editor
dconf-editor

导航/org/gnome/settings-daemon/peripherals/mouse并激活中键启用

更新 2:上述方法均不适用于 16.04 LTS。但第一步这个官方解决方法幫助了。请注意,本指南的其余步骤可能不适用。

创建文件/usr/share/X11/xorg.conf.d/中间鼠标按钮.conf并插入

Section "InputClass"
     Identifier "middle button emulation class"
     MatchIsPointer "on"
     Option "Emulate3Buttons" "on"
EndSection

更新 3:在 Ubuntu 再次使用 Gnome 后,这种情况再次发生了变化。对于 17.10、18.04 等,可以使用Gnome 调整工具如下所述此问答键盘和鼠标 -> 鼠标中键粘贴

答案2

根据@jotrocken的回答,配置几乎可以正常工作。应该是:

Section "InputClass"
     Identifier "middle button emulation class"
     MatchIsPointer "on"
     Option "Emulate3Buttons" "True"
EndSection

然后重新启动 lig​​htdm 或当前在系统上运行的其他 DM。

相关内容