diff options
author | Mathias Bynens <mathias@qiwi.be> | 2012-04-04 19:32:45 +0200 |
---|---|---|
committer | Mathias Bynens <mathias@qiwi.be> | 2012-04-04 19:32:45 +0200 |
commit | c5efa6a2955814cd47e139fbc0f20bc2e0d6991f (patch) | |
tree | b9bde95ea3d5dc59726cd7489a1e62f4e2bf24eb | |
parent | 7fbc78992a5281bd299c10015e202b9f171f05ce (diff) | |
download | dotfiles-c5efa6a2955814cd47e139fbc0f20bc2e0d6991f.tar.gz dotfiles-c5efa6a2955814cd47e139fbc0f20bc2e0d6991f.tar.bz2 dotfiles-c5efa6a2955814cd47e139fbc0f20bc2e0d6991f.zip |
.osx: Disable the “add spacer to Dock” commands by default
-rwxr-xr-x | .osx | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -13,12 +13,14 @@ defaults write com.apple.dock autohide -bool true # Make Dock icons of hidden applications translucent defaults write com.apple.dock showhidden -bool true -# Add a spacer to the dock -defaults write com.apple.dock persistent-apps -array-add '{tile-data={}; tile-type="spacer-tile";}' - # Enable iTunes track notifications in the Dock defaults write com.apple.dock itunes-notifications -bool true +# Add a spacer to the left side of the Dock (where the applications are) +#defaults write com.apple.dock persistent-apps -array-add '{tile-data={}; tile-type="spacer-tile";}' +# Add a spacer to the right side of the Dock (where the Trash is) +#defaults write com.apple.dock persistent-others -array-add '{tile-data={}; tile-type="spacer-tile";}' + # Disable menu bar transparency defaults write NSGlobalDomain AppleEnableMenuBarTransparency -bool false |