mirror of
https://github.com/turtlebasket/env.git
synced 2026-03-05 12:04:27 -08:00
11 lines
290 B
Bash
11 lines
290 B
Bash
#!/bin/bash
|
|
|
|
# Disable mouse movement acceleration
|
|
defaults write .GlobalPreferences com.apple.mouse.scaling -1
|
|
|
|
# Disable scrolling acceleration
|
|
defaults write .GlobalPreferences com.apple.scrollwheel.scaling -1
|
|
|
|
# Remind to logout
|
|
echo To fully apply changes, log out and back in again.
|