LinuxでThinkPadキーボードのホイールのエミュレート
標準でトラックポイントも動くのですが、中ボタンによるホイールができません。
以下のファイルを編集して中ボタンによるホイールを有効にします。
# File is /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
これで中ボタンによるホイールも動くようになります。