-
-
Notifications
You must be signed in to change notification settings - Fork 10.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
automate Caskfile #4710
Comments
Not sure what your use-case for having it always up to date would be, but that is probably more suited for when #3066 lands. Either way, you can currently do it with your shell. Add to your cask() {
brew cask install $@
brew cask list | sed 's/^/cask install /' > "${HOME}/Caskfile"
} use |
thx alot |
oh... I was of the impression that you guys did't like this idea? |
A way to create a
Caskfile
based on the casks you have installed on your system.like doing
brew cask list >> Caskfile
but withcask install
as a prefix before all the cask listedMaybe even a way to keep it up to date, so every time you install a new cask or uninstalling a old cask the
Caskfile
will automatically updateThe text was updated successfully, but these errors were encountered: