openSUSE LinuxでLenovo ThinkPad USB トラックポイントキーボードを使う

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

これで中ボタンによるホイールも動くようになります。

コメントを残す

メールアドレスが公開されることはありません。 が付いている欄は必須項目です

This site uses Akismet to reduce spam. Learn how your comment data is processed.