Logicoolのtrackballでwheel scroll

mouseが壊れちゃったので初めてtrackballというものを買ってみたのだけど、結構良い。

でも、Linuxだと付属のwheel scrollソフトが使えないので何とかしようと。

で色々見てみたら/etc/X11/xorg.confをごにょごにょすれば良さそうなんだけども、最近はそれはあまり宜しくなくて、/usr/share/X11/xorg.conf.d/ に細切れの設定ファイルを置くのがモテるらしい。

で、設定は右手用で右手親指寄りの中央ボタンでwheel scroll modeになるようにしました。

komamitsu@onion:~$ cat /usr/share/X11/xorg.conf.d/88-logicool-trackball.conf 
Section "InputClass"
        Identifier  "Marble Mouse"
        MatchProduct "Logitech USB Trackball"
        MatchIsPointer "on"
        MatchDevicePath "/dev/input/event*"
        Driver "evdev"
        Option "ButtonMapping" "1 9 3 4 5 6 7 8 2"
        Option "EmulateWheel" "true"
        Option "EmulateWheelButton" "8"
        Option "ZAxisMapping" "4 5"
        Option  "XAxisMapping" "6 7"
        Option  "Emulate3Buttons" "false"
EndSection