From 18a2f9a5f8a50d4c7165e40613f4836541345909 Mon Sep 17 00:00:00 2001 From: Vlad Marinov Date: Mon, 26 Oct 2015 20:45:06 -0700 Subject: [PATCH 1/2] Space to Dock command --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index 94be634..1ce9e0d 100644 --- a/README.md +++ b/README.md @@ -328,6 +328,11 @@ defaults write com.apple.dock persistent-others -array-add '{ "tile-data" = { "l killall Dock ``` +#### Add a Space in Dock +```bash +defaults write com.apple.dock persistent-apps -array-add '{"tile-type"="spacer-tile";}'; killall Dock +``` + ## Documents From 2d17fc436ca275cf8c7b6a536de66f15b2b34334 Mon Sep 17 00:00:00 2001 From: Vlad Marinov Date: Mon, 26 Oct 2015 21:11:13 -0700 Subject: [PATCH 2/2] Fixed space suggestion --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 1ce9e0d..75af4b5 100644 --- a/README.md +++ b/README.md @@ -328,9 +328,10 @@ defaults write com.apple.dock persistent-others -array-add '{ "tile-data" = { "l killall Dock ``` -#### Add a Space in Dock +#### Add a Space ```bash -defaults write com.apple.dock persistent-apps -array-add '{"tile-type"="spacer-tile";}'; killall Dock +defaults write com.apple.dock persistent-apps -array-add '{"tile-type"="spacer-tile";}' &&\ +killall Dock ```