Open the terminal and type:
xinput --list --shortFind the name of your device. Mine was Areson USB Device.
Set the constant deceleration (a value to 2 worked best for me):
xinput --set-prop "Areson USB Device" "Device Accel Constant Deceleration" 2To run this command at startup, create a script (mouseAccel.sh):
#!/bin/sh
xinput --set-prop "Areson USB Device" "Device Accel Constant Deceleration" 2Set permissions to make it executable:
$ chmod +x mouseAccel.shAdd it to System -> Preferences -> Startup Applications
No comments:
Post a Comment