Thinkpad中键滚动


24

我在Thinkpad T60上运行Ubuntu。有没有办法让中间按钮像滚动条一样运行Windows?

我希望能够按住中间按钮并使用红色按钮向下滚动网页。

Answers:


20

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

保存并重新启动。


4
在10.10中,您应该gksu gedit /usr/share/X11/xorg.conf.d/20-thinkpad.conf改用
vava 2010年

太棒了!基石对Debian Jessie准确无误。
维克多·黑格奎斯特(VictorHäggqvist)2014年

在运行Debian Stretch的T540p上为我工作,但我还必须添加Driver "evdev"到配置文件中。
Nikopol

17

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

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

屏幕截图


我可以验证它是否可以在运行Ubuntu 10.04的ThinkPad X60上正常工作。+1,然后使用代表发布您的屏幕截图。:)
ændrük


1

Gpointing是用于gnome桌面的图形应用程序,可以实现相同的结果;)

使用Ubuntu将其安装在终端中

sudo apt-get install gpointing-device-settings

或通过软件中心“ gpointing-device-settings”


非常适合HP Pavilion触摸板
Xeoncross 2014年

E: Package 'gpointing-device-settings' has no installation candidate aj07mm@aj07mm-ThinkPad-X220:~$
朱利奥·马林斯

看起来此gpointing-device-settings不再受支持。我没有这个包裹。
Rubanraj Ravichandran

1

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


1

在Ubuntu 14.04中,这些设置位于/usr/share/X11/xorg.conf.d/11-evdev-trackpoint.conf中。看起来像这样:

 # trackpoint users want wheel emulation

Section "InputClass"
    Identifier  "trackpoint catchall"
    MatchIsPointer  "true"
    MatchProduct    "TrackPoint|DualPoint Stick"
    MatchDevicePath "/dev/input/event*"
    Option  "Emulate3Buttons"   "true"
    Option  "EmulateWheel"  "true"
    Option  "EmulateWheelButton"    "2"
    Option  "XAxisMapping"  "6 7"
    Option  "YAxisMapping"  "4 5"
EndSection

若要获得“自然滚动”,即沿指针方向滚动,可以将YAxisMapping值交换为“ 5 4”。交换我的信息后,我重新启动,效果很好。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.