Created
June 17, 2012 08:17
-
-
Save rlazoti/2943881 to your computer and use it in GitHub Desktop.
OSX Defaults
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
#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