Skip to content

Instantly share code, notes, and snippets.

@ColsterJ
Forked from koenbok/mac-tweaks.md
Created April 23, 2022 22:37
Show Gist options
  • Select an option

  • Save ColsterJ/a2dd3d650bbecf9722f22daad0caa67e to your computer and use it in GitHub Desktop.

Select an option

Save ColsterJ/a2dd3d650bbecf9722f22daad0caa67e to your computer and use it in GitHub Desktop.
My Favorite Mac Tweaks

Skip verifying disk images

defaults write com.apple.frameworks.diskimages skip-verify true

Always hide the Desktop

defaults write com.apple.finder CreateDesktop false; killall Finder

Make terminal logins fast

touch ~/.hushlogin

Disable most animations

defaults write NSGlobalDomain NSAutomaticWindowAnimationsEnabled -bool false

defaults write -g QLPanelAnimationDuration -float 0

defaults write NSGlobalDomain NSWindowResizeTime -float 0.001

defaults write com.apple.finder DisableAllAnimations -bool true

Increase the key repeat rate

defaults write NSGlobalDomain KeyRepeat -int 1

Disable save to iCloud by default

defaults write NSGlobalDomain NSDocumentSaveNewDocumentsToCloud -bool false

@ColsterJ
Copy link
Author

See original for additions by commenters - https://gist.github.com/koenbok/60aaf06ae0428603896ea0d872dcdf16

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