ubuntu 10.04でThinkPadのスクロールボタンを使う

2010/10/03

なんか不便だと思っていたらこれか。

/usr/lib/X11/xorg.conf.d/20-thinkpad.conf

Section “InputClass”
Identifier “Trackpoint Wheel Emulation”
MatchProduct “TrackPoint”
MatchDevicePath “/dev/input/event*”
Driver “evdev”
Option “EmulateWheel” “true”
Option “EmulateWheelButton” “2”
Option “Emulate3Buttons” “false”
Option “XAxisMapping” “6 7”
Option “YAxisMapping” “4 5”
EndSection

参考にしました。これ系は最初に海外をググるに限る。
http://psung.blogspot.com/2010/04/thinkpad-trackpoint-scrolling-in-ubuntu.html

Comments are closed.