Skip to content

Instantly share code, notes, and snippets.

@aculich
Last active August 4, 2018 21:58
Show Gist options
  • Select an option

  • Save aculich/c785d8e3517482f2f3ac3dec37850f3b to your computer and use it in GitHub Desktop.

Select an option

Save aculich/c785d8e3517482f2f3ac3dec37850f3b to your computer and use it in GitHub Desktop.
Remove all icons from OS X dock
#!/bin/bash
git clone https://github.com/jcarm010/osx-dock-remover
cd osx-dock-remover
for i in `sudo -u me defaults read com.apple.dock persistent-apps | grep file-label | cut -c 28- | cut -d\; -f1`; do python dock-icon-remove.py -r $i; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment