Skip to content

Instantly share code, notes, and snippets.

@bitonio
Last active May 16, 2022 01:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bitonio/f0f57d2e1722f344a29e9de361a53b79 to your computer and use it in GitHub Desktop.
Save bitonio/f0f57d2e1722f344a29e9de361a53b79 to your computer and use it in GitHub Desktop.
Productivity

Mouse Speed

defaults read -g com.apple.mouse.scaling
# Fastest you can get using the Mouse option in System Preferences is 3.0
# Now let's set it to 5.0
defaults write -g com.apple.mouse.scaling 5.0

No need to reboot or else, the effect takes place immediately in MacOS Monterey.

Mouse acceleration on macOS

defaults read .GlobalPreferences com.apple.mouse.scaling
# 2.5 was the default on my Monterey, 4 is much better
defaults write .GlobalPreferences com.apple.mouse.scaling 4 
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment