my cursor moves too fast

Questions about hardware, drivers and peripherals
Forum rules
Before you post read how to get help. Topics in this forum are automatically closed 6 months after creation.
Locked
charroo
Level 4
Level 4
Posts: 495
Joined: Mon Aug 14, 2017 9:45 am
Location: ISRAEL!

my cursor moves too fast

Post by charroo »

hi
i bought a new wireless mouse for my laptop

cold not find a way to adjust the cursor so that it moves slower than it is.

the mouse settings didn't really solve it for me...

what is next?

thanks
Last edited by LockBot on Wed Dec 28, 2022 7:16 am, edited 1 time in total.
Reason: Topic automatically closed 6 months after creation. New replies are no longer allowed.
i'm on Linux Mint 21.3 Cinnamon
rene
Level 20
Level 20
Posts: 12212
Joined: Sun Mar 27, 2016 6:58 pm

Re: my cursor moves too fast

Post by rene »

Create a file /etc/X11/xorg.conf.d/mouse-deceleration.conf (you will on vanilla install have to create the directory /etc/X11/xorg.conf.d/ first) with:

Code: Select all

Section "InputClass"
    Identifier      "Logitech M705 evdev"
    MatchDriver     "evdev"
    MatchProduct    "Logitech M705"
    Option          "ConstantDeceleration" "2"
EndSection

Section "InputClass"
    Identifier      "Logitech M705 libinput"
    MatchDriver     "libinput"
    MatchProduct    "Logitech M705"
    Option          "AccelProfile" "flat"
    Option          "AccelSpeed" "-0.75"   
EndSection
in which you need to replace the MatchProduct value with the (complete) string you see in the output of xinput list (and should of course change the identifier accordingly). The "evdev" stanza is not normally needed anymore; it's an older driver. It doesn't hurt to leave it in either. Of course, change the "AccelSpeed" value to taste; range -1 to 1, with negative meaning deceleration, positive acceleration. I advise to pick a value such that the desktop configuration also still makes sense, with its fastest setting too fast and its slowest too slow.
charroo
Level 4
Level 4
Posts: 495
Joined: Mon Aug 14, 2017 9:45 am
Location: ISRAEL!

Re: my cursor moves too fast

Post by charroo »

thank you
i didn't knew it is complicated
i'm on Linux Mint 21.3 Cinnamon
rene
Level 20
Level 20
Posts: 12212
Joined: Sun Mar 27, 2016 6:58 pm

Re: my cursor moves too fast

Post by rene »

What is complicated?
Locked

Return to “Hardware Support”