Skip to content

Instantly share code, notes, and snippets.

@gcollazo
Created March 4, 2016 13:34
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gcollazo/52b4359177faa9caf51c to your computer and use it in GitHub Desktop.
Save gcollazo/52b4359177faa9caf51c to your computer and use it in GitHub Desktop.
Update your Atom starred packages.
# The atom cli tool provides a command for installing packages
# that you have previously starred. Once you all you pakackages
# are starred installing is super easy `apm stars --install`.
# This little command unstars all packages in your profile
# and start only the ones you have installed.
# For this to work you need jq `brew install jq`.
alias atomstars='apm unstar $(apm stars --json | jq -r ".[].name") && apm star --installed'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment