Skip to content

Instantly share code, notes, and snippets.

@jai-o
Created January 22, 2012 20:37
Show Gist options
  • Save jai-o/1658690 to your computer and use it in GitHub Desktop.
Save jai-o/1658690 to your computer and use it in GitHub Desktop.
MAC: Useful Mac OSX Terminal commands

Useful Mac OSX Terminal commands

Change Finder to show Hidden Files

defaults write com.apple.finder AppleShowAllFiles TRUE
killall Finder

Change Finder to show Path

defaults write com.apple.finder _FXShowPosixPathInTitle -bool YES
killall Finder

Change Screen capture location and file extension

defaults write com.apple.screencapture location /Users/username/Documents/Scrnshots
defaults write com.apple.screencapture name "Img"
killall SystemUIServer

Remove Mac Dashboard

defaults write com.apple.dashboard mcx-disabled -boolean YES
killall Dock
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment