Friday, April 19, 2024
 Popular · Latest · Hot · Upcoming
134
rated 0 times [  134] [ 0]  / answers: 1 / hits: 272846  / 2 Years ago, thu, january 27, 2022, 4:57:40

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.


More From » mouse

 Answers
1

First we need to identify the input device ID to change the speed/sensitivity. Open a terminal and run this command:



xinput --list --short


output:



abcd@abcd-abcde:~$ xinput --list --short

Virtual core pointer

↳ SynPS/2 Synaptics TouchPad id=11 [slave pointer (2)]

↳ Logitech USB RECEIVER id=12 [slave pointer (2)]


My pointing devices are a Logitech USB RECEIVER and a Synaptics TouchPad.
To list out device properties:



xinput --list-props "SynPS/2 Synaptics TouchPad"


EDIT:



Another option:
xinput --list-props 11 as 11 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:



Device Accel Constant Deceleration (267):   2.500000


using this command:



xinput --set-prop "SynPS/2 Synaptics TouchPad" "Device Accel Constant Deceleration" 1.5


EDIT:



Another option:
xinput --set-prop 11 267 1.5 where 11 is the device, just like from above, 267 is the id of the device property (Device Accel Constant Decleration) as you can see when device 11 is being listed all of properties being attached, and finally 1.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



#!/bin/sh

xinput --set-prop "SynPS/2 Synaptics TouchPad" "Device Accel Constant Deceleration" 1.5


change the file to executable :



chmod +x


and Put this in the start-up applications list.



Source : Configuring Mouse Speed manually


[#34744] Friday, January 28, 2022, 2 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
afyess

Total Points: 437
Total Questions: 120
Total Answers: 107

Location: San Marino
Member since Fri, Jul 3, 2020
4 Years ago
afyess questions
;