Skip to content

Instantly share code, notes, and snippets.

@lsfalimis
Created May 4, 2014 01:32
Show Gist options
  • Save lsfalimis/e795c3f6c49cbcaa1063 to your computer and use it in GitHub Desktop.
Save lsfalimis/e795c3f6c49cbcaa1063 to your computer and use it in GitHub Desktop.
disable OS X animation (10.9.2)
#Finder
#disable snap to grid animation
defaults write com.apple.finder AnimateSnapToGrid -bool false
#disable some animations
defaults write com.apple.finder DisableAllAnimations -bool true
#disable opening files zoom animation
defaults write com.apple.finder ZoomRects -bool false
#disable animations in Get Info window
defaults write com.apple.finder AnimateInfoPanes -bool false
#disable slow-motion animation when press shift
defaults write com.apple.finder QLEnableSlowMotion -bool false
#other... make ~ as path bar base location
defaults write com.apple.finder PathBarRootAtHome -bool true
#Launchpad
#speed fade-in
defaults write com.apple.dock springboard-show-duration -float 0.1
#speed fade-out
defaults write com.apple.dock springboard-hide-duration -float 0
#Mission Control
#speed show and hide animation
defaults write com.apple.dock expose-animation-duration -float 0
#reduce window drag delay
defaults write com.apple.dock workspaces-edge-delay -float 0
#Other
#speed roll out animation of save dialog
defaults write NSGlobalDomain NSWindowResizeTime -float 0.1
#speed opening files zoom animation
defaults write NSGlobalDomain NSAutomaticWindowAnimationsEnabled -bool false
#other... show file extension globally
defaults write NSGlobalDomain AppleShowAllExtensions -bool true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment