So I finally am trying to get my forward/back mouse buttons working, I had them working in my last install but completely forgot how I did it...
I've gotten to the point where my wheel acts as forward/back, and the side buttons act as scrolling. I can use xmodmap to force it to remap the buttons (xmodmap -e "pointer = 1 2 3 6 7 4 5"). In searching the web, I found (apparently new-ish) options for xorg.conf called "ButtonMapping." My question: is ButtonMapping in xorg.conf the same as the flags for xmodmap?
Here is my current Mouse section:
Code:
Section "InputDevice"
Identifier "Mouse0"
Driver "mouse"
Option "Protocol" "ExplorerPS/2"
Option "Device" "/dev/input/mice"
Option "Buttons" "4 5"
Option "ZAxisMapping" "6 7"
Option "Emulate3Buttons" "yes"
EndSection
When I add this, it seems to make no difference:
Code:
Option "ButtonMapping" "1 2 3 6 7 4 5"
I'd prefer to keep everything in xorg.conf instead of having to add xmodmap for every user... any ideas?