Last active
June 12, 2016 17:18
-
-
Save Shilo/e5c40e8231669f1cfd379a4727dde70a to your computer and use it in GitHub Desktop.
OS X Useful Terminal Commands
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
//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