Created
March 31, 2012 20:30
-
-
Save janinge/2268193 to your computer and use it in GitHub Desktop.
Mac OS X 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
#!/bin/sh | |
defaults write NSGlobalDomain AppleKeyboardUIMode -int 3 | |
defaults write NSGlobalDomain AppleShowAllExtensions -bool true | |
defaults write NSGlobalDomain NSNavPanelExpandedStateForSaveMode -bool true | |
defaults write NSGlobalDomain PMPrintingExpandedStateForPrint -bool true | |
defaults write NSGlobalDomain KeyRepeat -int 0.18 | |
defaults write NSGlobalDomain InitialKeyRepeat -int 24 | |
defaults write NSGlobalDomain WebKitDeveloperExtras -bool true | |
defaults write com.adobe.AdobeUpdater.Admin Disable.Update -bool yes | |
defaults write com.apple.dashboard mcx-disabled -boolean YES; killall Dock | |
defaults write com.apple.desktopservices DSDontWriteNetworkStores -bool true | |
defaults write com.apple.dock showhidden -bool true | |
defaults write com.apple.finder FXDefaultSearchScope -string "SCcf" | |
defaults write com.apple.finder ShowPathbar -bool true | |
defaults write com.apple.finder ShowStatusBar -bool true | |
defaults write com.apple.finder _FXShowPosixPathInTitle -bool true | |
defaults write com.apple.finder FXEnableExtensionChangeWarning -bool false | |
defaults write com.apple.finder WarnOnEmptyTrash -bool false | |
defaults write com.apple.frameworks.diskimages auto-open-ro-root -bool true | |
defaults write com.apple.frameworks.diskimages auto-open-rw-root -bool true | |
defaults write com.apple.iTunes disablePingSidebar -bool true | |
defaults write com.apple.iTunes disablePing -bool true | |
defaults write com.apple.iTunes NSUserKeyEquivalents -dict-add "Target Search Field" "@F" | |
defaults write com.apple.Safari IncludeInternalDebugMenu -bool true | |
defaults write com.apple.Safari FindOnPageMatchesWordStartsOnly -bool false | |
defaults write com.apple.systempreferences TMShowUnsupportedNetworkVolumes 1 | |
defaults write com.apple.terminal StringEncodings -array 4 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment