Skip to content

Instantly share code, notes, and snippets.

@nickhammond
Created March 31, 2012 17:25
Show Gist options
  • Save nickhammond/2266920 to your computer and use it in GitHub Desktop.
Save nickhammond/2266920 to your computer and use it in GitHub Desktop.
echo "Show all extensions"
defaults write NSGlobalDomain AppleShowAllExtensions -bool true
echo "Require password immediately after sleep or screen saver begins"
defaults write com.apple.screensaver askForPassword -int 1
defaults write com.apple.screensaver askForPasswordDelay -int 0
echo "Disable the Ping sidebar in iTunes"
defaults write com.apple.iTunes disablePingSidebar -bool true
echo "Disable all the other Ping stuff in iTunes"
defaults write com.apple.iTunes disablePing -bool true
echo "Make ⌘ + F focus the search input in iTunes"
defaults write com.apple.iTunes NSUserKeyEquivalents -dict-add "Target Search Field" "@F"
echo "Enable Dashboard dev mode (allows keeping widgets on the desktop)"
defaults write com.apple.dashboard devmode -bool true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment