我在 Thinkpad T60 上运行 Ubuntu。有没有办法让中间按钮像在运行 Windows 时一样滚动?
我希望能够按住中间的按钮并使用红色按钮向下滚动网页。
答案1
http://www.eastwoodzhao.com/thinkpad-middle-button-scroll-ubuntu-linux-10-04-lucid-lynx/
简而言之,运行此命令:gksu gedit /usr/lib/X11/xorg.conf.d/20-thinkpad.conf
并将其放入文件中:
Section "InputClass"
Identifier "Trackpoint Wheel Emulation"
MatchProduct "TPPS/2 IBM TrackPoint|DualPoint Stick|Synaptics Inc. Composite TouchPad / TrackPoint"
MatchDevicePath "/dev/input/event*"
Option "EmulateWheel" "true"
Option "EmulateWheelButton" "2"
Option "Emulate3Buttons" "false"
Option "XAxisMapping" "6 7"
Option "YAxisMapping" "4 5"
EndSection
保存并重新启动。
答案2
答案3
答案4
我在 AwesomeWM 自动启动文件中使用以下内容:
# make the mouse work right on my thinkpad in lucid
xinput set-prop 'TPPS/2 IBM TrackPoint' "Evdev Wheel Emulation" 1
xinput set-prop 'TPPS/2 IBM TrackPoint' "Evdev Wheel Emulation Button" 2
xinput set-prop 'TPPS/2 IBM TrackPoint' "Evdev Wheel Emulation Timeout" 200
在默认的 Gnome 安装中,您可以编写一个在启动时运行的脚本,或者检查是否使用了 .xinitrc 或 .Xresources。(我不记得现在使用了哪个了)