ubuntu and extra mouse buttons woe.

Permabanned
Joined
14 Aug 2006
Posts
1,395
Hi have enable the extra buttons so I can skip fwd/back within firefox but I'm only getting the back button not forward. I have had it working before but this is a fresh install and I'm stumped.

Be grateful if you could advise me on what to do.

Here is relevant bit of my xorg.conf file.


Section "InputDevice"
Identifier "Configured Mouse"
Driver "mouse"
Option "CorePointer"
Option "Device" "/dev/input/mice"
Option "Protocol" "ExplorerPS/2"
Option "ZAxisMapping" "4 5 "
Option "Emulate3Buttons" "true"
Option "Buttons" "7"
Option "ButtonMapping" "1 2 3 5 6 7"
EndSection
 
Ive tried this too, but i messed up the config and had to restor my config by the command line, aint had the guts to try again :D But on the ubuntu wiki there is a guide to do it :)
 
Think it depends upon your mouse brand and model but this gets the forward and back buttons working on my Logitech MX700

Code:
Section "InputDevice"
    Identifier     "Mouse[1]"
    Driver         "mouse"
    Option         "Buttons" "10"
    Option         "Device" "/dev/input/mice"
    Option         "Name" "Logitech USB Receiver"
    Option         "Protocol" "explorerps/2"
    Option         "Vendor" "Sysp"
    Option         "ZAxisMapping" "4 5"
    Option         "ButtonMapping" "1 2 3 6 7 "
    Option         "Resolution" "800"
EndSection
 
just spotted error I have button 5 mapped twice. DOH!

porkrind said:
Section "InputDevice"
Identifier "Configured Mouse"
Driver "mouse"
Option "CorePointer"
Option "Device" "/dev/input/mice"
Option "Protocol" "ExplorerPS/2"
Option "ZAxisMapping" "4 5 "
Option "Emulate3Buttons" "true"
Option "Buttons" "7"
Option "ButtonMapping" "1 2 3 5 6 7"
EndSection
 
Back
Top Bottom