Skip to content

Instantly share code, notes, and snippets.

@mapfel
Last active August 29, 2015 14:16
Show Gist options
  • Save mapfel/909d6e0428043b8803e7 to your computer and use it in GitHub Desktop.
Save mapfel/909d6e0428043b8803e7 to your computer and use it in GitHub Desktop.
Show & Hide hidden files (1)
defaults write com.apple.finder AppleShowAllFiles -bool YES
defaults write com.apple.finder AppleShowAllFiles -bool NO
Show & Hide hidden files (2)
defaults write com.apple.finder AppleShowAllFiles 1 && killall Finder
Display full Path in OS X Finder title Bar
defaults write com.apple.finder _FXShowPosixPathInTitle -bool YES
Make Hidden Application Icons Translucent in the Dock
defaults write com.apple.Dock showhidden -bool YES;killall Dock
Change the Hibernate/Sleep Mode from "enhanced" Suspend (3) to hibernate (25)
sudo pmset -a hibernatemode 25
check the mode via
pmset -g | grep hibernatemode
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment