cheatsheets/macos-mouse-acceleration.md

38 lines
876 B
Markdown
Raw Permalink Normal View History

2018-03-20 09:55:17 +00:00
---
title: Mouse Acceleration
category: macOS
updated: 2018-03-20
weight: -1
2018-03-20 10:57:15 +00:00
keywords:
- "defaults write .GlobalPreferences com.apple.mouse.scaling -1"
2018-03-20 09:55:17 +00:00
intro: |
Disable mouse acceleration with this one weird trick.
---
## Acceleration
### Disabling
```bash
defaults write .GlobalPreferences com.apple.mouse.scaling -1
```
Note: Log out to take effect. If you change *Tracking Speed* under System Preferences, it will undo this fix. Only affects the mouse, not the trackpad.
2018-03-20 10:57:15 +00:00
### Re-enabling
2018-03-20 09:55:17 +00:00
Under *System Preferences**Mouse*, change *Tracking Speed*.
### Trackpad acceleration
```bash
defaults write .GlobalPreferences com.apple.trackpad.scaling -1
```
2018-03-20 10:57:15 +00:00
Works the same way, but only affects trackpads.
2018-03-20 09:55:17 +00:00
## References
- [Disabling mouse acceleration](https://stackoverflow.com/questions/5782884/disabling-mouse-acceleration-in-mac-os-x) _(stackoverflow.com)_