Created
April 12, 2013 00:20
-
-
Save GirlBossRush/5368285 to your computer and use it in GitHub Desktop.
Adjust mouse acceleration on Chrome OS
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
DEVICE_ID=`xinput list | grep "Logitech" | sed 's/.*id=\([0-9]*\).*/\1/'` | |
xinput set-prop $DEVICE_ID "Device Accel Profile" 7 | |
xinput set-prop $DEVICE_ID "Device Accel Constant Deceleration" 240 | |
xinput set-prop $DEVICE_ID "Evdev Wheel Emulation Inertia" 0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment