Last active
December 21, 2015 01:48
-
-
Save seekshreyas/6230071 to your computer and use it in GitHub Desktop.
# DockSpacer
_Add spaces in your Dock_
This file contains hidden or 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
| # 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";}' | |
| killall Dock |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment