Advertisement
Guest User

Untitled

a guest
Oct 26th, 2016
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. $ defaults read -g | grep mouse
  2. "com.apple.mouse.doubleClickThreshold" = "1.1";
  3. "com.apple.mouse.scaling" = "2.5";
  4.  
  5. defaults write -g com.apple.mouse.scaling -float 2.1
  6.  
  7. tell application "System Preferences"
  8. reveal pane "com.apple.preference.mouse"
  9. end tell
  10. tell application "System Events" to tell process "System Preferences"
  11. set value of slider 3 of window 1 to 9.0 -- maximum, minimum is 0.0
  12. end tell
  13. quit application "System Preferences"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement