Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save justinmklam/76e4d5133d0ad94ce825e954992e3e95 to your computer and use it in GitHub Desktop.
Save justinmklam/76e4d5133d0ad94ce825e954992e3e95 to your computer and use it in GitHub Desktop.
Increase trackpoint sensitivity on Ubuntu.
# Source: https://askubuntu.com/a/511281
xinput --list --short | grep -i trackpoint
# In this case, device id=16. This lists all available properties and current values
xinput list-props 16
# Change from 1.0 to 0.35 for higher sensitivity
xinput --set-prop 16 "Device Accel Constant Deceleration" 0.35
## Add the above command to Startup Applications
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment