Linux Trackball Configuration – No Xorg.conf Editing Needed

gnomelinuxxorg

Summary:

In this post, I explain how I configure my trackball through xorg.conf file and ask what I should do instead, knowing that xorg.conf is deprecated.

Long Introduction:

I've been using a Logitech Trackman Marble trackball under a GNOME desktop for a while and I'm very happy with the feeling. ( http://www.logitech.com/fr-be/mice-pointers/trackballs/devices/4786 )

Unfortunately, when you plug it under any Linux distribution (tested with Ubuntu, OpenSuse GNOME and Fedora), there's no middle click and no scrolling. Only basic mouse movement and left and right click are working.

What I want to achieve is the following:

  • big left button : standard click
  • small left button: middle click
  • big right button: right click or enabling ball scrolling when big left button pressed
  • small right button: disabled (not easily clickable anyway)

That configuration is achievable by creating /etc/X11/xorg.conf with the following content:

Section "InputClass"
Identifier "Marble Mouse"
Driver "evdev"
MatchProduct "Logitech USB Trackball"
MatchDevicePath "/dev/input/event*"
MatchIsPointer "yes"
Option "ButtonMapping" "1 9 3 4 5 6 7 2 8"
Option "EmulateWheel" "true"
Option "EmulateWheelButton" "3"
Option "ZAxisMapping" "4 5"
Option "XAxisMapping" "6 7"
Option "Emulate3Buttons" "false"
EndSection

Questions:

1) Knowing that xorg.conf is deprecated, what should be the best way to configure my trackball ?

2) Is there any way to configure it in user space to allow different users to have different configuration (e.g. one is left handed) ?

3) The current default configuration for this device is completely suboptimal. Against which project should I report a bug in order to have a better default plug-n-play configuration ?

4) Is there any project to offer a graphical configuration tool for that ?

Bonus question: If you use the same device, do you have any trick to avoid the ball being blocked by the finger grease? 😉

Thanks.

Best Answer

The new place to put tweaks is: /etc/X11/xorg.conf.d/10-evdev.conf which may be elsewhere according to distro, eg /usr/share/X11/xorg.conf.d/10-evdev.conf

For more info see the Arch Wiki for Logitech (there's a GNOME bug which is also mentioned in the Ubuntu writeup.)

The arch wiki also shows how to set it up per-user with ~/.Xmodmap or ~/.xinitrc

Related Question