Created
September 5, 2009 18:49
-
-
Save gvarela/181481 to your computer and use it in GitHub Desktop.
This file contains 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
#!/usr/bin/env bash | |
# 2D dock | |
defaults write com.apple.dock no-glass -boolean YES | |
# highlight on mouse over | |
defaults write com.apple.dock mouse-over-hilte-stack -boolean yes | |
# spring load all dock items | |
defaults write com.apple.dock enable-spring-load-actions-on-all-items -boolean yes | |
# recent items stack | |
defaults write com.apple.dock persistent-others -array-add '{ "tile-data" = { "list-type" = 1; }; "tile-type" = "recents-tile"; }' | |
# make hidden app icons semi transparent | |
defaults write com.apple.Dock showhidden -boolean yes | |
killall Dock | |
# show posix path in finder title | |
defaults write com.apple.finder _FXShowPosixPathInTitle -bool YES | |
killall Finder |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment