Created
November 15, 2013 05:57
-
-
Save jentanbernardus/7479802 to your computer and use it in GitHub Desktop.
Add Spacers to the Left and Right-Side of the Dock in Mac OS X. Launch the Terminal and paste the snippets below into the command line.
If you want multiple spacers added, just hit the up arrow and return to initiate the command again. Each execution of the defaults write command will create one additional spacer in the Dock. After a spacer has …
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
defaults write com.apple.dock persistent-apps -array-add '{"tile-type"="spacer-tile";}' ;killall 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
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