Skip to content

Instantly share code, notes, and snippets.

@nrollr
Last active July 25, 2016 13:32
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save nrollr/68132a51b467849c4fe5 to your computer and use it in GitHub Desktop.
Save nrollr/68132a51b467849c4fe5 to your computer and use it in GitHub Desktop.
Performance improvements for El Capitan
-- Disable Time Machine Local Backups
sudo tmutil disablelocal
-- Disable Automatic Spell Checker
defaults write -g NSAutomaticSpellingCorrectionEnabled -bool false
-- Disable animations when opening and closing windows.
defaults write NSGlobalDomain NSAutomaticWindowAnimationsEnabled -bool false
-- Disable animations when opening a Quick Look window.
defaults write -g QLPanelAnimationDuration -float 0
-- Accelerated playback when adjusting the window size (Cocoa applications).
defaults write NSGlobalDomain NSWindowResizeTime -float 0.001
-- Disable animation when opening the Info window in OS X Finder (CMD+I).
defaults write com.apple.finder DisableAllAnimations -bool true
-- Disable animations when you open an application from the Dock.
defaults write com.apple.dock launchanim -bool false
-- Make all animations faster that are used by Mission Control.
defaults write com.apple.dock expose-animation-duration -float 0.1
-- Disable the delay when you hide the Dock
defaults write com.apple.Dock autohide-delay -float 0
-- Disable the animation when you sending and replying an e-mail
defaults write com.apple.mail DisableReplyAnimations -bool true
defaults write com.apple.mail DisableSendAnimations -bool true
-- Disable the standard delay in rendering a Web page.
defaults write com.apple.Safari WebKitInitialTimedLayoutDelay 0.25
-- The keyboard react faster to keystrokes (not equally useful for everyone
defaults write NSGlobalDomain KeyRepeat -int 0
-- Disable Apache autostarting
sudo launchctl unload -w /System/Library/LaunchDaemons/org.apache.httpd.plist
@gcoppola8
Copy link

-- To disable apache autostarting, that its pretty useless for the most.
sudo launchctl unload -w /System/Library/LaunchDaemons/org.apache.httpd.plist

@nrollr
Copy link
Author

nrollr commented May 29, 2016

gennarocoppola8 Added your suggestion to the gist.
Thnx for the feedback!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment