How to disable slow motion effect in Mac OS X (shift key)?
Mac OS X has a fantastic feature that enables you to play window effects in slow motion by holding down the Shift key while playing the animation (like minimize, maximize, Exposé, etc...)
As a matter of fact, I don't like it! :)
How can I disable it?
Open up Terminal.app
Type:
defaults write com.apple.finder FXEnableSlowAnimation -bool false
If you want to go back, use:
defaults write com.apple.finder FXEnableSlowAnimation -bool true
You'll need to restart the Finder after running the command.
At least for me, in Yosemite 10.10.3, the following answer from our friends at Ask Different worked: https://apple.stackexchange.com/a/115698
You can disable the hotkeys for slow motion effects by following these instructions:
Open Terminal
Go to
~/Library/Preferences
by typingcd ~/Library/Preferences
.Write
open com.apple.symbolichotkeys.plist
and pressEnter
.A window similar to this will open:
For items
34
,35
, and37
, setenabled
toNO
.Restart your system.
Enjoy.
Source
- MacWorld
- In Translation