由于触摸板功能不佳,我想使用 xorg.conf 为其提供更详细的配置。
因此我通过复制默认配置文件来创建一个新的 xorg 配置文件cp /usr/share/X11/xorg.conf.d/50-synaptics.conf /etc/X11/xorg.conf.d/50-synaptics-mod.conf
。
我重新启动并检查两个参数的当前值(现在应该没有任何变化)。
pca:~$ synclient -l | grep 'VertScrollDelta\|EmulateTwoFingerMinZ'
EmulateTwoFingerMinZ = 282
VertScrollDelta = 24
到目前为止一切似乎都正常,其中只有一些默认值。
现在我想改变这两个参数。
所以我打开创建的文件/etc/X11/xorg.conf.d/50-synaptics-mod.conf
并修改此部分
Section "InputClass"
Identifier "touchpad catchall"
Driver "synaptics"
MatchIsTouchpad "on"
MatchDevicePath "/dev/input/event*"
#Option "EmulateTwoFingerMinZ" "13"
#Option "VertScrollDelta" "17"
EndSection
通过添加代码片段中注释掉的两个选项。
我重新启动并获取值
pca:~$ synclient -l | grep 'VertScrollDelta\|EmulateTwoFingerMinZ'
EmulateTwoFingerMinZ = 13
VertScrollDelta = 24
因此EmulateTwoFingerMinZ
按预期进行了修改。但不知何故VertScrollDelta
仍然保持不变。
这疯狂的背后到底隐藏着什么?
我正在使用标准ubuntu
,gnome
并且synclient VertScrollDelta=17
运行良好。