Saturday, April 20, 2024
 Popular · Latest · Hot · Upcoming
31
rated 0 times [  31] [ 0]  / answers: 1 / hits: 49017  / 2 Years ago, wed, june 8, 2022, 11:43:49

Is there anyway to reduce the mouse sensitivity in Ubuntu 12.04?



I've used the slider on the systems settings to set it to the lowest point but it's still too fast.


More From » mouse

 Answers
3


  1. looking for mouse device id or name


  2. $ xinput --list
    ⎡ Virtual core pointer id=2 [master pointer (3)]
    ⎜ ↳ Virtual core XTEST pointer id=4 [slave pointer (2)]
    ⎜ ↳ A4Tech USB Full Speed id=10 [slave pointer (2)]
    ⎜ ↳ A4Tech USB Full Speed id=11 [slave pointer (2)]
    ⎣ Virtual core keyboard id=3 [master keyboard (2)]
    ↳ Virtual core XTEST keyboard id=5 [slave keyboard (3)]
    ↳ Power Button id=6 [slave keyboard (3)]
    ↳ Power Button id=7 [slave keyboard (3)]
    ↳ CHESEN USB Keyboard id=8 [slave keyboard (3)]
    ↳ CHESEN USB Keyboard id=9 [slave keyboard (3)]


  3. setting mouse sensivity


  4. $ xinput --set-prop 10 "Device Accel Constant Deceleration" 4


    don't know why there are two same names so have choosen id by random. and it worked out.

  5. telling system to do this after logging in


  6. create script:

    #!/bin/bash
    xinput --set-prop 10 "Device Accel Constant Deceleration" 4
    xinput --set-prop 10 "Device Accel Velocity Scaling" 1


    then run command:

    $ gnome-session-properties


    and add the script to the list.

    don't forget about chmod +x.



information was found here and here.


[#38546] Thursday, June 9, 2022, 2 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
lintical

Total Points: 344
Total Questions: 122
Total Answers: 106

Location: Sint Maarten
Member since Mon, Oct 12, 2020
4 Years ago
lintical questions
Thu, Jan 12, 23, 03:07, 1 Year ago
Mon, Jun 28, 21, 07:01, 3 Years ago
Sat, Aug 7, 21, 04:29, 3 Years ago
Mon, Dec 5, 22, 00:03, 1 Year ago
;