MrVulcan

Disable Animations in macOS

Nov 8th, 2016
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.72 KB | None | 0 0
  1. # opening and closing windows and popovers
  2. defaults write -g NSAutomaticWindowAnimationsEnabled -bool false
  3.  
  4. # smooth scrolling
  5. defaults write -g NSScrollAnimationEnabled -bool false
  6.  
  7. # showing and hiding sheets, resizing preference windows, zooming windows
  8. # float 0 doesn't work
  9. defaults write -g NSWindowResizeTime -float 0.001
  10.  
  11. # opening and closing Quick Look windows
  12. defaults write -g QLPanelAnimationDuration -float 0
  13.  
  14. # rubberband scrolling (doesn't affect web views)
  15. defaults write -g NSScrollViewRubberbanding -bool false
  16.  
  17. # resizing windows before and after showing the version browser
  18. # also disabled by NSWindowResizeTime -float 0.001
  19. defaults write -g NSDocumentRevisionsWindowTransformAnimation -bool false
  20.  
  21. # showing a toolbar or menu bar in full screen
  22. defaults write -g NSToolbarFullScreenAnimationDuration -float 0
  23.  
  24. # scrolling column views
  25. defaults write -g NSBrowserColumnAnimationSpeedMultiplier -float 0
  26.  
  27. # showing the Dock
  28. defaults write com.apple.dock autohide-time-modifier -float 0
  29. defaults write com.apple.dock autohide-delay -float 0
  30.  
  31. # showing and hiding Mission Control, command+numbers
  32. defaults write com.apple.dock expose-animation-duration -float 0
  33.  
  34. # showing and hiding Launchpad
  35. defaults write com.apple.dock springboard-show-duration -float 0
  36. defaults write com.apple.dock springboard-hide-duration -float 0
  37.  
  38. # changing pages in Launchpad
  39. defaults write com.apple.dock springboard-page-duration -float 0
  40.  
  41. # at least AnimateInfoPanes
  42. defaults write com.apple.finder DisableAllAnimations -bool true
  43.  
  44. # sending messages and opening windows for replies
  45. defaults write com.apple.Mail DisableSendAnimations -bool true
  46. defaults write com.apple.Mail DisableReplyAnimations -bool true
Add Comment
Please, Sign In to add comment