即使围绕我的主题有大量的提示,我仍然找不到解决方案,为什么在我的 XPS13 DE 9360 上无法使用三指点击创建用于中键模拟的 xorg.conf 文件。
对于我来说,使用 X11 配置文件使三指点击作为中键模拟工作是行不通的(详情如下)。
但是使用“synclient TapButton3=2”是可行的。因此触摸板本身似乎没有一般问题。
我创建了文件 /etc/X11/xorg.conf.d/52-tap3.conf,内容如下:
Section "InputClass"
Identifier "Mouse Middle Button emulation by tapping 3 fingers"
Driver "synaptics"
MatchIsTouchpad "on"
Option "TapButton3" "2"
EndSection
毫不奇怪的是,查看 X11 日志发现该选项已被读取 - 请参阅此摘录的最后一行:
[ 6510.852] (II) config/udev: Adding input device DLL075B:01 06CB:76AF Touchpad (/dev/input/event15)
[ 6510.852] (**) DLL075B:01 06CB:76AF Touchpad: Applying InputClass "evdev touchpad catchall"
.
.
[ 6510.852] (**) DLL075B:01 06CB:76AF Touchpad: Applying InputClass "Mouse Middle Button emulation by tapping 3 fingers"
[ 6510.852] (II) LoadModule: "synaptics"
[ 6510.852] (II) Loading /usr/lib/xorg/modules/input/synaptics_drv.so
.
.
[ 6511.005] (**) Option "TapButton3" "2"
但是,如果我登录系统,
synclient | grep TapButton3
再次给我零。
TapButton3 = 0
有人知道我这里遗漏了什么吗?xorg-log 中的消息是否仅表示已读取该选项,还是表示已激活该选项?
目前,我当然使用 synclient(登录时自动运行),但我仍然想知道为什么 conf 文件对我的系统没有任何影响。
提前感谢 Arno