dotfiles/.config/fish/functions/cask.fish

5 lines
144 B
Fish
Raw Normal View History

2022-08-02 11:00:02 -04:00
function cask -d "Install a new homebrew cask and update the global Brewfile"
echo "cask \"$argv\"" >> ~/.Brewfile
brew bundle --global
end