Tell me more ×
Ask Ubuntu is a question and answer site for Ubuntu users and developers. It's 100% free, no registration required.

I'm using Chrome, and the scroll rate is like 3 lines, and it's painfully slow. My finger gets tired really quickly on long pages. System → Preferences → Mouse lacks any scroll wheel configuration options.

share|improve this question

6 Answers

I wanted to do this too, and I figure I most often want to do it in a web browser (where else do you really mouse-wheel scroll a great deal?)

For Google Chrome, add --scroll-pixels=150 to your shortcut to Chrome, or startup script, etc.

i.e.:

/opt/google/chrome/google-chrome --scroll-pixels=150

I found 150 to be a good scroll amount but you could even make it higher for extreme scrolling.

For Firefox, do this:

① In the url field, type about:config.

② Scroll down to “mousewheel.withnokey.sysnumlines”. Double-click the line to set the value to “false”.

③ Double-click the line “mousewheel.withnokey.numlines”, and set it to a number you like.

share|improve this answer

The fix for me for this (I had it for months) was pretty surreal and like most folks I didn't believe it until I did it:

Some MS mice have a scrollwheel bug.

Try unplugging the USB cable / dongle then plug back in.

Also, I noticed that if you have the dongle plugged in to the computer and the mouse has an on-off mechanism then you can just turn the mouse off and back on. That resets the data link between the mouse and dongle.

:)

share|improve this answer

From triaged bug #619403 on mouse-wheel acceleration against xorg-server with a link to this patch you can see there is work in progress.

In addition there is a Wiki on how to configure input devices that gives you ideas on what is possible at present:

Use xinput to show setting of your input devices:

xinput --list gives you information on your hardware xinput query-state "name of device" lists the current settings (including mouse wheel!)

Only after you know how your mouse is set up you are able to change these setting using xinput with the option appropriate for your device.

share|improve this answer
how do you apply this patch? – user6465 Jan 22 '11 at 0:24
If not for testing or contributing it is generally not a good idea to patch Xorg server. If you don't know exactly what you're doing and something goes wrong you may end up with a non-responsive system. – Takkat Jan 25 '11 at 7:15

For people using Unity, you can find your lens shortcut in:

cd /usr/share/applications
gedit chromium-browser.desktop 
share|improve this answer

This was also annoying me.

This following is one option quoted verbatim from a comment here

Begin Quote:

sudo apt-get install imwheel

place the following in ~/.imwheelrc

"^google-chrome$"
  None, Up, Button4, 2
  None, Down, Button5, 2

(replace 2 by the number you want to multiply scrolling by)

$ imwheel

End Quote:

  • I added imwheel to my startup applications
  • I found the mutliplier 2 to be about right.

Update: I found that the following option actually disabled Ctrl+Scroll to zoom, which I quite like.

share|improve this answer
1  
Another side-effect is that this affects all mouse wheel events, not just scrolling. E.g. if you ever use the mouse wheel to change tabs this will ruin that functionality :) – Sheldno Nov 29 '11 at 14:58

Please note unfortunately --scroll-pixels is deprecated and removed from Chrome and Chromium. This flag has not effect on scroll speed.

More details here: https://code.google.com/p/chromium/issues/detail?id=154776

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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