Thinkpad 中键滚动

Thinkpad 中键滚动

我在 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

安装包“gpointing-device-settings”设置选项如下:

check "Use middle button emulation"
check "Use wheel emulation"
select button "2"
check "Enable vertical scroll"

截屏

答案3

ThinkWiki 有指示如何做到这一点。具体来说,如何使用新输入(1)配置TrackPoint。

(总而言之,思考维基是一个很好的资源。它是关于在 Thinkpad 上运行 Linux 的几乎所有内容的首选之地。)

答案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。(我不记得现在使用了哪个了)

相关内容