Skip to content

Instantly share code, notes, and snippets.

@gvarela
Created September 5, 2009 18:49
Show Gist options
  • Save gvarela/181481 to your computer and use it in GitHub Desktop.
Save gvarela/181481 to your computer and use it in GitHub Desktop.
#!/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