| Mouse: Logitech MX I just want to share with you people how I got my Logitech MX mouse to work.
I did try a lot of very complicated HOW-TO (involving udev, evdev, xbindkeys, etc.), but as always, the simplest solution works best.
This HOW-TO is specific for the MX500, on Debian GNU/Linux, but it should work with most MX mice and distros.
Just replace your mouse section in /etc/X11/XFConfig-4 or /etc/X11/xorg.conf with this one: For XFree86 4.3 and Xorg 6.8.2 (ex: Debian Sarge, Suse 10.0, Fedora Core 4, etc.) Code: Section "InputDevice"
Identifier "Configured Mouse"
Driver "mouse"
Option "CorePointer"
Option "Device" "/dev/input/mice"
Option "Protocol" "ExplorerPS/2"
Option "Resolution" "800" #optional
Option "Buttons" "7"
Option "ZAxisMapping" "4 5"
EndSection
For Xorg 6.9 and Xorg 7.0 (Debian Etch, Fedora Core 5, etc.) Code: Section "InputDevice"
Identifier "Configured Mouse"
Driver "mouse"
Option "CorePointer"
Option "Device" "/dev/input/mice"
Option "Protocol" "ExplorerPS/2"
Option "Resolution" "800" #optional
Option "Buttons" "10"
Option "ZAxisMapping" "4 5"
Option "ButtonMapping" "1 2 3 6 7"
EndSection
That's it, all the buttons will work perfectly in Mozilla and Mozilla Firefox (even those back/forward buttons on the side).
For back/forward to work properly in Konqueror, you have to set up "imwheel", but that is left as an exercice.
Thanks to: http://www.cs.cornell.edu/~djm/ubunt...-5button-mouse http://ubuntuforums.org/showthread.p...985#post901985
__________________
"To express yourself in freedom, you must die to everything of yesterday. From the 'old', you derive security; from the 'new', you gain the flow."
-Bruce Lee
|