Skip to content

Instantly share code, notes, and snippets.

@sillage
Last active January 15, 2017 15:34
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 sillage/1747691 to your computer and use it in GitHub Desktop.
Save sillage/1747691 to your computer and use it in GitHub Desktop.
Terminal Tips
#!/bin/sh
# Terminal Tips: Make hidden Dock icons transparent
defaults write com.apple.dock showhidden -bool true && killall Dock
# Terminal Tips: Enable "path view" in Finder
defaults write com.apple.finder _FXShowPosixPathInTitle -bool YES && killall Finder
# How to prevent .DS_Store file creation over network connections
defaults write com.apple.desktopservices DSDontWriteNetworkStores true
# Allow text selection in the Quick Look window
defaults write com.apple.finder QLEnableTextSelection -bool true && killall Finder
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment