Skip to content

Instantly share code, notes, and snippets.

@inky
Last active September 24, 2015 17:17
Show Gist options
  • Save inky/782262 to your computer and use it in GitHub Desktop.
Save inky/782262 to your computer and use it in GitHub Desktop.
#!/bin/bash
set -e
# full path in finder windows
defaults write com.apple.finder _FXShowPosixPathInTitle -bool YES
# flat dock style
defaults write com.apple.dock no-glass -bool YES
# reduce the dock autohide delay
defaults write com.apple.dock autohide-delay -int 0
defaults write com.apple.dock autohide-time-modifier -float 0.4
# semitransparent icons for hidden apps
defaults write com.apple.dock showhidden -bool YES
# disable spaces animation
defaults write com.apple.dock workspaces-swoosh-animation-off -bool YES
# disable dashboard
defaults write com.apple.dashboard mcx-disabled -bool YES
# hide itunes crap
defaults write com.apple.iTunes show-store-arrow-links -bool NO
defaults write com.apple.iTunes hide-ping-dropdown -bool YES
# allow half-star ratings in itunes
defaults write com.apple.iTunes allow-half-stars -bool YES
killall -v Finder Dock Dashboard
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment