Hi,
I'm coming from Linux Mint and I've just installed Kubuntu 21.10 and I can't find a way to adjust the amount of mouse acceleration. I can only turn it on or off.
I would like to have SOME acceleration but when it is enabled, it is just too much for me.
In Mint I have a bar to adjust the amount of mouse sensitivity and one for acceleration.
I also couldn't find something regarding that on the web, which I find rather strange. Is this really such a uncommon thing to ask for?
Cheers
----------------------------------------------------------------------------------------------------------------------
SOLUTION:
Mouse acceleration can obviously not be changed within Kubuntu's settings. However, it is doable with very few commands.
I found the solution here: https://wiki.archlinux.org/title/Mouse_acceleration
Step 1: Identify device ID with
Step 2: Change acceleration factor with
while <acceleration factor> has to be a value between -1 and 1. Note: -1 means no (=zero) acceleration and any other value >-1 implies a positive acceleration.
To make this settings permanent see paragraph "Persistent configuration" in the provided link at the top of this post.
Troubleshooting: If "property 'Device Accel Speed' doesn't exist" error message appears you have chosen the wrong ID. To identify the right one, look again at the output from "Step 1" and write down all the IDs that can be associated with your mouse. Then try all these IDs with this command:
until it returns anything. Then you have found the right ID and can use the command from "Step 2" to adjust the mouse acceleration.
I'm coming from Linux Mint and I've just installed Kubuntu 21.10 and I can't find a way to adjust the amount of mouse acceleration. I can only turn it on or off.
I would like to have SOME acceleration but when it is enabled, it is just too much for me.
In Mint I have a bar to adjust the amount of mouse sensitivity and one for acceleration.
I also couldn't find something regarding that on the web, which I find rather strange. Is this really such a uncommon thing to ask for?
Cheers
----------------------------------------------------------------------------------------------------------------------
SOLUTION:
Mouse acceleration can obviously not be changed within Kubuntu's settings. However, it is doable with very few commands.
I found the solution here: https://wiki.archlinux.org/title/Mouse_acceleration
Step 1: Identify device ID with
Code:
xinput list
Code:
xinput --set-prop <device ID> 'libinput Accel Speed' <acceleration factor>
To make this settings permanent see paragraph "Persistent configuration" in the provided link at the top of this post.
Troubleshooting: If "property 'Device Accel Speed' doesn't exist" error message appears you have chosen the wrong ID. To identify the right one, look again at the output from "Step 1" and write down all the IDs that can be associated with your mouse. Then try all these IDs with this command:
Code:
xinput list-props <device ID> | grep 'libinput Accel Speed'
Comment