Created
February 8, 2018 11:10
-
-
Save kidpixo/78b9a40ab58e026cf9a432573e27ced5 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# from : 10 terminal commands to speed up your Mac | defaults-write.com | |
# https://www.defaults-write.com/10-terminal-commands-to-speed-up-macos-sierra-on-your-mac/ | |
#1. Disable animations when opening and closing windows. | |
defaults write NSGlobalDomain NSAutomaticWindowAnimationsEnabled -bool false | |
#2. Disable animations when opening a Quick Look window. | |
defaults write -g QLPanelAnimationDuration -float 0 | |
#3. Accelerated playback when adjusting the window size (Cocoa applications). | |
defaults write NSGlobalDomain NSWindowResizeTime -float 0.001 | |
#4. Disable animation when opening the Info window in Finder (cmd⌘ + i). | |
defaults write com.apple.finder DisableAllAnimations -bool true | |
#5. Disable animations when you open an application from the Dock. | |
defaults write com.apple.dock launchanim -bool false | |
#6. Make all animations faster that are used by Mission Control. | |
defaults write com.apple.dock expose-animation-duration -float 0.1 | |
#7. Disable the delay when you hide the Dock | |
defaults write com.apple.Dock autohide-delay -float 0 | |
#Mail applicatie | |
#8. 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 | |
#9. Disable the standard delay in rendering a Web page. | |
defaults write com.apple.Safari WebKitInitialTimedLayoutDelay 0.25 | |
#10. The keyboard react faster to keystrokes (not equally useful for everyone | |
defaults write NSGlobalDomain KeyRepeat -int 0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment