How can I change mouse speed in Ubuntu?

0
=
0
+
0
No specific Bitcoin Bounty has been announced by author. Still, anyone could send Bitcoin Tips to those who provide a good answer.
0

I set the mouse speed to the minimum value here:

enter image description here

But mouse speed is still very fast

1 Answer

1
=
0
=
$0
Internet users could send Bitcoin Tips to you if they like your answer!

You need to do this:

  1. Check your current mouse speed:

    xset q | grep -A 1 Pointer

    You can see string like this:

    Pointer Control:
    acceleration:  2/1    threshold:  10
    

    2/1 - how many times faster the cursor will move than the default speed.

  2. Set new value:

    xset m 1/2

    1/2 - It's my settings. You can try other values: 1/3, 1/4, etc.

SEND BITCOIN TIPS
User rating:

Ohh. Thank you very much :)

1

Too many commands? Learning new syntax?

FavScripts.com is a free tool to save your favorite scripts and commands, then quickly find and copy-paste your commands with just few clicks.

Boost your productivity with FavScripts.com!

Post Answer