In Ubuntu 9.04, I am looking for a way to disable my mouses scroll so that the mouse works like an old fashioned 3-button mouse without the scroll functionality. Any ideas on how to do this?

link|improve this question

50% accept rate
feedback

1 Answer

up vote 4 down vote accepted

Change your /etc/X11/xorg.conf file so that the scrolling is ignored. You should be able to find a section similar to this for your mouse:

Section "InputDevice"
    [...]
EndSection

Change it to the following to ignore scrolling:

Section "InputDevice"
    [...]
    Option "HorizScrollDelta" "0"
    Option "VertScrollDelta" "0"
EndSection

This just makes it so scrolling scrolls by zero.

You may also be able to set this option through the Mouse control panel by setting the scroll amount to zero.

link|improve this answer
This did not work for me in KDE – JeffG May 25 '11 at 21:37
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.