-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Convert Swift3, Use NSUserDefaults, Add Think Spacers
- Loading branch information
Showing
6 changed files
with
71 additions
and
33 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,27 @@ | ||
### Blackspace | ||
|
||
Blackspace is an application that adds "blank" spaces to the OS X dock. | ||
Blackspace is an application that adds "blank" spaces (or "spacers") to the macOS Dock. | ||
|
||
![](https://github.com/peterp/Blackspace/blob/master/dock_example.png) | ||
![](https://github.com/perfaram/Blackspace/blob/master/dock_example.png) | ||
|
||
This is most commonly used as a way to seperate apps into logical categories. | ||
|
||
To remove a space drag it off the Dock, like you would any other icon. | ||
|
||
#### [Download](https://github.com/peterp/Blackspace/releases/download/1.0/Blackspace.app.zip) | ||
#### [Download](https://github.com/perfaram/Blackspace/releases/download/1.1/Blackspace.zip) | ||
|
||
[Download Blackspace.app](https://github.com/peterp/Blackspace/releases/download/1.0/Blackspace.app.zip) | ||
[Download Blackspace.app](https://github.com/perfaram/Blackspace/releases/download/1.1/Blackspace.zip) | ||
|
||
|
||
#### How does it work? | ||
|
||
It uses the following commands to achieve this, so if you're comfortable with using the Terminal then just do the following instead: | ||
It uses a programmatic equivalent to the following commands to add Dock spacers, so if you're comfortable with using the Terminal then just do the following instead: | ||
|
||
``` | ||
> defaults write com.apple.dock persistent-apps -array-add '{"tile-type"="spacer-tile";}' | ||
> killall Dock | ||
``` | ||
|
||
Or, if you want a thin spacer, replaces `spacer-tile` by `small-spacer-tile`. | ||
|
||
Enjoy. |