From d32ddf0287930043d665e6cc126a2725b186867a Mon Sep 17 00:00:00 2001 From: Sloane Perrault Date: Tue, 2 Aug 2022 11:00:02 -0400 Subject: [PATCH] add cask function --- .config/fish/functions/cask.fish | 4 ++++ 1 file changed, 4 insertions(+) create mode 100755 .config/fish/functions/cask.fish diff --git a/.config/fish/functions/cask.fish b/.config/fish/functions/cask.fish new file mode 100755 index 0000000..7cbff77 --- /dev/null +++ b/.config/fish/functions/cask.fish @@ -0,0 +1,4 @@ +function cask -d "Install a new homebrew cask and update the global Brewfile" + echo "cask \"$argv\"" >> ~/.Brewfile + brew bundle --global +end