Skip to content

Instantly share code, notes, and snippets.

@rlazoti
Created June 17, 2012 08:17
Show Gist options
  • Save rlazoti/2943881 to your computer and use it in GitHub Desktop.
Save rlazoti/2943881 to your computer and use it in GitHub Desktop.
OSX Defaults
#enable itunes notification in the dock
defaults write com.apple.dock itunes-notifications -bool TRUE
defaults write com.apple.dock notification-always-show-image -bool TRUE
#show hidden files in the Finder
defaults write com.apple.Finder AppleShowAllFiles YES
#expand save panel by default
defaults write NSGlobalDomain NSNavPanelExpandedStateForSaveMode -bool true
#show the ~/Library folder
chflags nohidden ~/Library
#disable press-and-hold for keys in favor of key repeat
defaults write NSGlobalDomain ApplePressAndHoldEnabled -bool false
#allow text selection in Quick Look
defaults write com.apple.finder QLEnableTextSelection -bool true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment