Skip to content

Instantly share code, notes, and snippets.

@Shilo
Last active June 12, 2016 17:18
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Shilo/e5c40e8231669f1cfd379a4727dde70a to your computer and use it in GitHub Desktop.
Save Shilo/e5c40e8231669f1cfd379a4727dde70a to your computer and use it in GitHub Desktop.
OS X Useful Terminal Commands
//Disable app nap system-wide (Requires Restart)
defaults write NSGlobalDomain NSAppSleepDisabled -bool YES
//Finder show hidden files
defaults write com.apple.finder AppleShowAllFiles YES; killall Finder
//Desktop hide icons
defaults write com.apple.finder CreateDesktop false; killall Finder
//TextEdit open new document by default (Requires restart of TextEdit)
defaults write -g NSShowAppCentricOpenPanelInsteadOfUntitledFile -bool false
//Finder show full path in titlebar
defaults write com.apple.finder _FXShowPosixPathInTitle -bool true; killall Finder
//Disable the pop-up accent window when typing (May require specific application restart)
defaults write -g ApplePressAndHoldEnabled -bool false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment