Skip to content

Instantly share code, notes, and snippets.

@tylergets
Created July 26, 2016 02:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tylergets/565be4701c3e92b29edb3fe7bacfbd22 to your computer and use it in GitHub Desktop.
Save tylergets/565be4701c3e92b29edb3fe7bacfbd22 to your computer and use it in GitHub Desktop.
OSX Setup Commands. Currently disables animations.
#!/bin/bash
# MacOS/OSX Setup Scripts
# By Tyler Getsay's Preference
# Last tested on El Captain
#
# Disable window animaions
defaults write NSGlobalDomain NSAutomaticWindowAnimationsEnabled -bool false
# Disable QuickLook animations
defaults write -g QLPanelAnimationDuration -float 0
# Disable window resize animations
defaults write NSGlobalDomain NSWindowResizeTime -float 0.001
# Disable dock animations
defaults write com.apple.dock launchanim -bool false
# Disable Get Info animations
defaults write com.apple.finder DisableAllAnimations -bool true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment