Last active
January 21, 2022 07:19
-
-
Save mtib/eae34c692cdad01ef72ca02f2413cbe1 to your computer and use it in GitHub Desktop.
Sensible defaults for my macs
This file contains hidden or 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
| # https://gist.github.com/dannysmith/9369950 | |
| defaults write NSGlobalDomain NSWindowResizeTime -float 0.001 | |
| defaults write NSGlobalDomain NSDocumentSaveNewDocumentsToCloud -bool false | |
| defaults write com.apple.LaunchServices LSQuarantine -bool false | |
| defaults write com.apple.SoftwareUpdate ScheduleFrequency -int 1 | |
| defaults write com.apple.BluetoothAudioAgent "Apple Bitpool Min (editable)" -int 40 | |
| defaults write NSGlobalDomain AppleKeyboardUIMode -int 3 | |
| defaults write NSGlobalDomain ApplePressAndHoldEnabled -bool false | |
| defaults write NSGlobalDomain KeyRepeat -int 2 | |
| defaults write NSGlobalDomain AppleFontSmoothing -int 2 | |
| defaults write com.apple.finder FXDefaultSearchScope -string "SCcf" | |
| defaults write com.apple.finder FXEnableExtensionChangeWarning -bool false | |
| defaults write com.apple.desktopservices DSDontWriteNetworkStores -bool true | |
| defaults write com.apple.finder FXPreferredViewStyle -string "Nlsv" | |
| defaults write com.apple.dashboard mcx-disabled -bool true | |
| defaults write com.apple.dock autohide-delay -float 0 | |
| defaults write com.apple.terminal StringEncodings -array 4 | |
| # https://apple.stackexchange.com/questions/33600/how-can-i-make-auto-hide-show-for-the-dock-faster | |
| defaults write com.apple.dock autohide-time-modifier -int 0;killall Dock |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I love it.