Update: Since Ubuntu 8.10 “Intrepid Ibex” Hal has superseded xserver/xorg.conf as the preferred means to configure input devices. However, I couldn’t get the advice at
https://help.ubuntu.com/community/Logitech_Marblemouse_USB
to work for me. The article hints at shaky button mapping, so if you want to go back to the good old days of xorg.conf, you can add
Option “AutoAddDevices” “no”
to the “ServerLayout” section of your xorg.conf file which will effectively disable Hal. More info (in German) is here:
http://www.blogs.uni-osnabrueck.de/rotapken/2008/08/14/xorg-evdev-und-hal-teil-2/
Update: This post has the settings for hal, and they work just like the old xorg.settings. Migration to hal will likely bring benefits for most, such as plug-and-play hot plugging. You might want to check out this writeup before taking the plunge.
Original post:
As you know I consider the Logitech Marble Mouse the Best Pointing Device, bar none. And the final tweak I wanted to enable the trackball to act as a scroll wheel. For Windows and those suffering from the generally horrid Logitech drivers and utilities (SetPoint anyone?), there’s Marble Mouse Scroll Wheel. But for my installation of Linux Mint/Ubuntu I had tried some advice from the web without success, to the point when X failed to load. Finally the approach suggested by linux (USA) in his Amazon review worked. It lets you use the right small button as a paste button and holding the left small button will let you use marble/ball as an omnidirectional scroll wheel. Here it goes:
You must edit your /etc/X11/xorg.conf file (dont’ forget to backup with cp xorg.conf xorg.conf.bak), for xorg 6.8 the relevant settings look like this:
Section “InputDevice”
Identifier “Configured Mouse”
Driver “mouse”
Option “CorePointer”
Option “Device” “/dev/input/mice”
Option “Protocol” “ExplorerPS/2″
Option “Buttons” “5″
Option “YAxisMapping” “4 2″
Option “XAxisMapping” “6 7″
Option “EmulateWheel” “yes”
Option “EmulateWheelButton” “4″
EndSection
You also need to create an ~/.xmodmap file in your home directory and enter:
pointer = 1 5 3 4 2 6 7
With xorg 7.2 (released 15th Feb. 2007) and newer you have to remove the “YAxisMapping” and change the “EmulateWheelButton” to “8”, so that the entire section looks like this:
Section “InputDevice”
Identifier “Configured Mouse”
Driver “mouse”
Option “CorePointer”
Option “Device” “/dev/input/mice”
Option “Protocol” “ExplorerPS/2″
Option “XAxisMapping” “6 7″
Option “EmulateWheel” “yes”
Option “EmulateWheelButton” “8″
EndSection
Your ~/.xmodmap file will have to contain this:
pointer = 1 9 3 4 5 6 7 8 2 10 11
instead of the above. The protocol setting “ExplorerPS/2” is also important to get the buttons to work even though the device is connected via USB.
To enable horizontal scrolling in Firefox you’ll have to go to the about:config page and set:
mousewheel.horizscroll.withnokey.action 0
The ~/.xmodmap file will likely be loaded automatically when you start your system, but if not you might have to create a ~/.xinitrc file. This page has more info, and here’s more info about monitoring your buttons using the xev utility. Hope it helps.
Recent Comments