Last active
November 4, 2024 03:11
-
-
Save Laicure/a52f6e289b82be10a49ef7c3c5c8d3db to your computer and use it in GitHub Desktop.
MacOS defaults
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
# dock hide and hover delays | |
defaults write com.apple.WindowManager AutoHideDelay -float 0.25 | |
defaults write com.apple.dock autohide-delay -float 0.25 | |
killall Dock | |
# list view default | |
defaults write com.apple.finder "FXPreferredViewStyle" -string "Nlsv" | |
killall Finder | |
# Save to disk (not to iCloud) by default | |
defaults write NSGlobalDomain NSDocumentSaveNewDocumentsToCloud -bool false | |
# Automatically quit printer app once the print jobs complete | |
defaults write com.apple.print.PrintingPrefs "Quit When Finished" -bool true | |
# Disable Resume system-wide | |
defaults write com.apple.systempreferences NSQuitAlwaysKeepsWindows -bool false | |
# Reveal IP address, hostname, OS version, etc. when clicking the clock | |
# in the login window | |
sudo defaults write /Library/Preferences/com.apple.loginwindow AdminHostInfo HostName | |
# Finder: disable window animations and 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