Thinkpad X上のUbuntu 10.04LTSか10.10でトラックポイントでスクロールできるようにする

スペースの下の真ん中ボタンを押しながらトラックポイントの上下でスクロールできるようにする. 以下の情報を参照.

http://d.hatena.ne.jp/hiro_nemu/20100421/1271859786
http://d.hatena.ne.jp/hiro_nemu/20101024/1287898287

Ubuntu 10.04LTSであれば/usr/lib/X11/xorg.conf.d, 10.10であれば/usr/share/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

あとは再起動すれば良い.