左右ボタンクリックで中ボタンクリックとする機能。昔はGUIで設定できた気がしたのだが...
# /usr/share/X11/xorg.conf.d/99-mydev.conf
Section "InputClass"
Identifier "Kensington Orbit Trackball with Scroll Ring"
MatchIsPointer "on"
MatchDevicePath "/dev/input/event*"
MatchUSBID "047d:2048"
Driver "evdev"
Option "Emulate3Buttons" "True"
Option "Emulate3Timeout" "50"
EndSection
Match*
でデバイスを絞り込んで、オプションを追加している。Emulate3Buttons
フラグで中ボタンエミュレーション。Emulate3Timeout
はしきい値。
デバイスIDを調べるにはlsusb
を、ボタンIDを調べるのはxev
を使用するとよい。evdev
ドライバで使えるオプションはman evdev
に記載されているので参照されたし。