Software |
DMX4Linux Driver Suite for Linux |
csv2iif.pl suite convert PayPal transactions to IIF, OFX, QIF |
Hardware |
DMX30 Interface 128Ch SPP |
DMX43 Interface 2out 2in EPP |
LED Hardware for Linux and Windows |
EPROM Sampler for 8 bits of sound |
Misc |
CatWeasel Linux drivers for MK3/4 PCI |
pg_trompe PostgreSQL replication |
trycatch C exception/signal handling lib |
Patches to various software |
Tools and small scripts |
Docs misc documents |
Links to lighting stuff |
XFree86 Configuration for a 7 Button USB MouseI have purchased my mouse at the german retailer Karstadt. It is labeled as: Okano Optikmaus - Model Nr: 1300 - Article Nr: 0186160024. It is also sold as Belkin F8E850-OPT. However this is just the oem version of some asian mass product, so I assume this mouse is sold as different brands as well. If you know any of those please contact me. The linux input subsystem recognizes this mouse as: Manufacturer: Cypress Sem. Product: PS2/USB Browser Combo Mouse input: USB HID v1.00 Mouse [Cypress Sem. PS2/USB Browser Combo Mouse] The named manufacturer Cypress makes the usb controller chip used by the mouse for communications. The mouse has 4 distinct buttons and a combined button/wheel. The wheel events are transmitted as button clicks as well (similar to all other mice). The picture shows the location of the buttons:
XF86ConfigThe configuration for XFree86 4.x is straightforward. The following
excerpt only shows the mouse device configuration. Please adjust your
current config accordingly. The device Section "InputDevice" Identifier "usbmouse" Driver "mouse" Option "Device" "/dev/mouse" Option "Protocol" "ExplorerPS/2" Option "Buttons" "7" Option "ZAxisMapping" "6 7" EndSection If you use the x.org X11 Server, leave out the Buttons option. correcting X eventsAlthough X now correctly recognizes all events send by the mouse, your applications will no be able to use the mouse wheel and instead react to the side buttons. As mentioned earlier the button numbering does not convey to the standard. We have to remap the mouse buttons in the X server. There are two ways to accomplish that. You can add a line to your If you don't want to alter your Xmodmap file or it did not work,
you can also use the program In the x.org X11 distribution you have
to use the following expression for xmodmap: Using Buttons 4 & 5The additional buttons 4 & 5 are not used by default by many
applications. This results mostly from the fact, that X itself only
has (official) support for only 5 buttons (which include the wheel
buttons). But with the help of a tool called imwheel we can remap
arbitrary buttons to key events. I found that you should patch the
default configuration "Mozilla" , Up, Button4 , Down, Button5 , Left, Alt_L|Left , Right, Alt_L|Right "^Konqueror" , Up, Button4 , Down, Button5 , Left, Alt_L|Left , Right, Alt_L|Right DisassemblyIf you want to open the mouse you'll have to take off the white pads to access the screws. My mouse then looks like this and this. ContactPlease contact me if you have any questions or suggestions about this
page. If you know of other mouse devices which need remapping, please
give me some data of those devices. LinksColas
Nahaboo X mouse wheel scroll page contains many more configuration
examples and configurations for many applications to make use of the
mouse wheel. Another page with configuration hints for mice and
keyboard comes from the waikato linux
users group and the Gentoo Wiki.
Vojtech Pavlik the author of the Linux input subsystem wrote an FAQ
about mice and keyboards on Kernel Trap. And the
official documentation Mouse Support in
XFree86. Markus Raab has managed to use a left
and right handed mouse simultaneously. |