I just got an mx610 lefty yesterday. Here's how I got it working (mostly).
I'm running Debian sid amd64 with xorg 6.9.0.dfsg.1-4.
I followed blog.blackdown.de/2006/01/15/updated-logitech-mx1000-configuration (it won't let me post a URL until I've posted three times) to create a udev device /dev/input/mx610.
I had to change my xorg.conf mouse entry to this:
Code:
Section "InputDevice"
Identifier "Configured Mouse"
Driver "evdev"
# Option "CorePointer"
Option "Device" "/dev/input/mx610"
Option "Buttons" "20"
Option "ZAxisMapping" "4 5"
EndSection
Then I set up ~/.xbindkeysrc like so:
Code:
#Backward and Forward buttons
"xvkbd -text "\[Alt_L]\[Left]""
m:0x10 + b:8
"xvkbd -text "\[Alt_L]\[Right]""
m:0x10 + b:9
#===============================================================================
# Amarok.
#===============================================================================
# Next track
"amarok -f"
m:0x0 + c:153
# Previous track
"amarok -r"
m:0x0 + c:144
# Play
"amarok -p"
m:0x0 + c:162
# Stop
"amarok -s"
m:0x0 + c:164
# Volume +
"amixer set PCM 1+"
m:0x0 + c:176
# Volume -
"amixer set PCM 1-"
m:0x0 + c:174
# Mute
"amxier set PCM toggle"
m:0x0 + c:160
There's one more button you can use; the mail button. To use it add a section like the ones above, call whatever program you want, and use c:236. I have yet to figure how to get the scroll buttons left & right and the IM button to work (or to control the lights, but I don't care about that, since I can see a blinking icon on the screen better than one under my hand).