Quote:
Originally Posted by Lobais
I fixed most of this using firefox's about:config
I set:
middlemouse.contentLoadURL: false
middlemouse.paste: false
general.autoScroll: true
I still have problems with the thumbkeys though.
They currently does nothing.
xev tells me they are called "button 8". I'd like them to be "button 2" together with the wheel..
|
Use Option ButtonMapping in the xorg.conf file section Input device for the mouse. The syntax is physical buttons map to logical buttons.
E.g.,:
Code:
Option "ButtonMapping" "1 2 4 5 3"
will leave buttons 1 and 2 alone(you want this so only change if you are a lefty), map physical button three to generate button four events, map button physical four to generate button five events, and map physical button five to generate button three events.
##
be sure to have a space between the numbers so X can parse it properly.
There is some documentation on this which you can find via google. It should be in
man 4x mouse
but this is a fairly new option in X so maybe yes or maybe no.
...
"
Quote:
Option "ButtonMapping" "N1 N2 [...]"
Specifies how physical mouse buttons are mapped to logical but‐
tons. Physical button 1 is mapped to logical button N1, physi‐
cal button 2 to N2, and so forth. This enables the use of phys‐
ical buttons that are obscured by ZAxisMapping.
Default: "1 2 3 8 9 10 ...".
|
"
re:
http://lists.freedesktop.org/archive...ay/015330.html
The end result is that it made my mouse side buttons functional. I played -briefly- and found that moving the numbers around *does* change the events(but cannot say to what degree that will help you).
MY side buttons were 8 & 9 acc2 xev and did nothing of value before using
Code:
Option "ButtonMapping" "1 2 3 6 7"
After restart X they worked as forw|back(firefox) and left|right(konqueror window pane) and xev reports them as buttons 6 & 7.
RE:
http://en.opensuse.org/SDB:Mousebuttons and the "Belkin" mouse. ... YMMV.
hth...