I am on an Asus Zenbook UX32VD in Ubuntu 12.10. Both in 12.04 and 12.10 I haven't been able to change the mouse speed (i.e. the "sensitivity" in the mouse/touchpad dialog). I can change the slider, but nothing changes.
This is a big problem for me, since the mouse speed is somewhat slow. Any suggestions?
The problem is both for the touchpad and mouse.
First we need to identify the input
device ID
to change the speed/sensitivity. Open a terminal and run this command:output:
My pointing devices are a
Logitech USB RECEIVER
and aSynaptics TouchPad
. To list out device properties:EDIT:
Another option:
xinput --list-props 11
as11
is the number that is shown above in its parent property (SynPS/2 Synaptic TouchPad).Now reduce it's property values to suit your need:
using this command:
EDIT:
Another option:
xinput --set-prop 11 267 1.5
where11
is the device, just like from above,267
is the id of the device property (Device Accel Constant Decleration) as you can see when device11
is being listed all of properties being attached, and finally1.5
is your desired speed.You may have to play around with this number a bit to set it exactly as you need.
If you need to set this value automatically every time Ubuntu starts then:
create a .sh file
change the file to executable :
and Put this in the start-up applications list.
Source : Configuring Mouse Speed manually
Ubuntu 12.10 64-bit, Logitech cordless TrackMan
xinput did nothing for me.
to check settings
This sets the acceleration to 3 and the threshold to zero. Not great settings but better than before.
If you want to use fractional value, you can enter fraction (i.e. 3/2) instead of floating point number.
The man page says the settings will be lost on logout/reboot.
The above mentioned "Device Accel ..." options do not exist on my machine. Lenovo T440s running Ubuntu 18.04
Instead, I have success using these:
The original "Coordinate Transformation Matrix was 1 0 0 0 1 0 0 0 1 and I have now half the speed, which is slow enough for me.
With this syntax, we can adjust horizontal and vertical speed separately.
You can use these scripts to set the touchpad and mouse speed each systemstart:
For me, I think 1.5 and 10 are suitable values for the touchpad.
I use a Logitech usb mouse too.
So for a Logitech mouse use this script:
For me, I think 1.2 and 10 are suitable values for the mouse.
I created a project on Github: https://github.com/rubo77/mouse-speed
Running
sudo xset m 1 1
worked for me. My mouse speed now behaves in a normal behaviour like in Windows platform.I've fine-tuned deceleration by closing my eyes, before moving pointer to a certain place on the screen. After 5 adjustments, now my mouse moves that much as I'm expecting.
That's the line I'm using right now:
xinput --set-prop "Bluetooth Mouse M557" "Device Accel Constant Deceleration" 2.3
I used the 'simple' profile to increase the mouse resolution without acceleration.
You'll have to modify the script by using your particular device name. You can look that up by running xinput without arguments. Also the script has to be run each time the mouse is connected or when you start the system.
Just want to add to the previous answers that it's possible that there won't be
"Device Accel Constant Deceleration"
property. For example, I don't have it for Logitech G600 in Kubuntu 17.04. But there is"Coordinate Transformation Matrix"
which is even more powerAs mentioned by others acceleration is not the same as speed. Until recently I used the
Coordinate Transformation Matrix
setting to scale the mouse velocity and disabled mouse acceleration withxinput
. But this comes with its own issues - I had issues in Blender when doing mouse middle button drags to rotate the scene - The cursor was jumping as soon as I released the button. There is an open issue.But I found a way to directly set the DPI of the mouse. It is possible to create a setting file here:
With the following content - Replace
<name-of-the-device>
with the name shown inxinput
(e.g. "Logitech G700s Rechargeable Gaming Mouse").To apply the settings execute
Repeat until you find a DPI value which makes you happy.
My Logitech MX518 mouse was too slow on Ubuntu 18.04. I tried to set Accel speed prop to max (1), but it did not speed it enough.
After some more searching, found lomoco (Logitech Mouse Control) and installed it with
The man page is here http://manpages.ubuntu.com/manpages/xenial/man1/lomoco.1.html
The manual is good, but for a restless soul, this is what I did:
Got this as one of the output lines. c051 is the product ID.
Then set the sensitivity
And got a fast mouse.