66

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.

loonix
  • 928

6 Answers6

63

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.

:)

32

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

One can no longer change the scroll amount with command line parameters. However, you can use this add-on extension: https://chrome.google.com/webstore/detail/chromium-wheel-smooth-scr/khpcanbeojalbkpgpmjpdkjnkfcgfkhb?utm_source=plus

For Firefox

  1. In the url field, type about:config.
  2. Search for the following settings and change their values as desired:

    mousewheel.system_scroll_override_on_root_content.enabled
    mousewheel.system_scroll_override_on_root_content.horizontal.factor
    mousewheel.system_scroll_override_on_root_content.vertical.factor
    
Braiam
  • 69,112
7

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.

Takkat
  • 144,580
7

The option to configure mouse wheel speed in chrome seems to have been removed, however the Chromium Wheel Smooth Scroller extension seems to work really well.

5

This was also annoying me.

This following is one option quoted verbatim from a comment here

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
  • I added imwheel to my startup applications
  • I found the mutliplier 2 to be about right.

It should be noted that imwheel only works when using an Xorg session. Unfortunately, this does not work on Wayland.

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

3

UPDATE:

There is a new, great extension for mouse's wheel settings in Chrome. Use it and you can customize your wheel behaviour:

https://chrome.google.com/webstore/detail/chromium-wheel-smooth-scr/khpcanbeojalbkpgpmjpdkjnkfcgfkhb?utm_source=plus

OLD:

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

Zoltan
  • 508