Is there a way to cancel or disable the minimize animation completely in Mac OSX?
Asked
Active
Viewed 4,692 times
5
-
1which one? all of it ? – Ruskes Jan 28 '15 at 02:26
-
1something like this in your Terminal will do it defaults write com.apple.finder DisableAllAnimations -bool true – Ruskes Jan 28 '15 at 02:33
-
1@Buscar웃 Thank you you are welcome to link to another answer or leave as response. – William Jan 28 '15 at 02:33
-
1ok read this one http://apple.stackexchange.com/q/14001/46541 – Ruskes Jan 28 '15 at 02:35
1 Answers
4
To manage automatic window animations, use the commands below. NOTE THAT you'll have to quit and restart an application for the changes to take effect because it checks these settings on app launch.
Disable
To disable automatic window animations, enter the following Terminal command:
defaults write NSGlobalDomain NSAutomaticWindowAnimationsEnabled -bool NO
Enable
To enable window animations:
defaults write NSGlobalDomain NSAutomaticWindowAnimationsEnabled -bool YES

SaxDaddy
- 353
-
2What version of Mac OSX are you using because I can't seem to get these to work. – William Feb 09 '15 at 21:29
-
1These were from 10.9. I haven't confirmed in 10.10...different company and new role. – SaxDaddy Feb 10 '15 at 22:05