Ubuntu(现在为 21.10)希望我们使用 Wayland 而不是 X11,但如何在 Wayland 中做到这一点:
mac2011-linux% more ~/.xprofile
## emulate middle with double click
# xinput set-prop 12 353 1
## avoid spurious click to paste while scrolling
# xinput set-button-map 14 1 3 2
xinput list|grep pointer|tail -1|grep -o 'id=[0-9]*'|grep -o '[0-9]*'|xargs -i x
input set-button-map "{}" 1 3 2
# Synaptics touchpad settings
synclient LockedDrags=1
synclient HorizScrollDelta=-243
synclient TapButton3=2
?
更清楚地说,上面为我的会话配置了鼠标按钮和 Synaptics 触摸板驱动程序。