Created
July 27, 2011 10:24
-
-
Save jamesu/1109102 to your computer and use it in GitHub Desktop.
Disable all the annoying features in OSX Lion
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
# Commands to disable all the annoying features in OSX Lion | |
# Fork if you've got any more ideas! | |
# NOTE: most of these commands seem to need a restart to work | |
# Press and hold (i.e. fix key autorepeating) | |
defaults write -g ApplePressAndHoldEnabled -bool false | |
# Window animations | |
defaults write NSGlobalDomain NSAutomaticWindowAnimationsEnabled -bool NO | |
# Reverse scrolling | |
defaults write NSGlobalDomain com.apple.swipescrolldirection -bool NO | |
# Spell checking | |
defaults write NSGlobalDomain NSAutomaticSpellingCorrectionEnabled -bool NO | |
# Un-hide ~/Library | |
chflags nohidden ~/Library/ | |
# Useful information: | |
# Installing XCode 3 on lion | |
# http://www.danielemargutti.com/2011/07/22/how-to-install-xcode-3-on-lion/ | |
# Connecting to legacy AFP services | |
# http://support.apple.com/kb/HT4700 | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment