|
All mices with scroll wheel or stick
XFree86 >= 4.x (or other XServer with wheel to mouse button
support)
The mouse must be setup in XF86Config to send the mouse buttons 4 and 5 for wheel actions.
Edit /etc/X11/XF86Config with your favorite editor
Add the following line to the "InputDevice" section.
Section "InputDevice"
Driver "mouse"
Identifier "Mouse[1]"
Option "Device" "/dev/psaux"
Option "Name" "AutoDetected"
Option "Protocol" "IMPS/2"
Option "Vendor" "AutoDetected"
Option "ZAxisMapping" "4 5"
EndSection
Example for NetScroll Optical USB (Suse 7.3):
Section "InputDevice"
Driver "mouse"
Identifier "Mouse[1]"
Option "ButtonNumber" "5"
Option "Device" "/dev/usbmouse"
Option "InputFashion" "Mouse"
Option "Name" "Autodetection"
Option "Protocol" "imps/2"
Option "Vendor" "Sysp"
Option "ZAxisMapping" "4 5"
EndSection
|