diff options
author | 2024-03-25 16:43:09 +0530 | |
---|---|---|
committer | 2024-03-25 16:43:09 +0530 | |
commit | a62114c91f2070c8c8453d117f3d81dc113e41ff (patch) | |
tree | f266e87af29a08c01f82bc32dd7d463d8ec4441a /zsh/oh-my-zsh/plugins/brew/brew.plugin.zsh | |
parent | af120ab348f2e1a5a39dec035ed9dcf84189a64e (diff) | |
download | dotfiles-a62114c91f2070c8c8453d117f3d81dc113e41ff.tar.gz dotfiles-a62114c91f2070c8c8453d117f3d81dc113e41ff.tar.bz2 dotfiles-a62114c91f2070c8c8453d117f3d81dc113e41ff.zip |
dotfile update
Diffstat (limited to 'zsh/oh-my-zsh/plugins/brew/brew.plugin.zsh')
-rw-r--r-- | zsh/oh-my-zsh/plugins/brew/brew.plugin.zsh | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/zsh/oh-my-zsh/plugins/brew/brew.plugin.zsh b/zsh/oh-my-zsh/plugins/brew/brew.plugin.zsh deleted file mode 100644 index 070a083..0000000 --- a/zsh/oh-my-zsh/plugins/brew/brew.plugin.zsh +++ /dev/null @@ -1,21 +0,0 @@ -alias brewp='brew pin' -alias brewsp='brew list --pinned' -alias bubo='brew update && brew outdated' -alias bubc='brew upgrade && brew cleanup' -alias bubu='bubo && bubc' -alias buf='brew upgrade --formula' -alias bcubo='brew update && brew outdated --cask' -alias bcubc='brew upgrade --cask && brew cleanup' - -function brews() { - local formulae="$(brew leaves | xargs brew deps --installed --for-each)" - local casks="$(brew list --cask)" - - local blue="$(tput setaf 4)" - local bold="$(tput bold)" - local off="$(tput sgr0)" - - echo "${blue}==>${off} ${bold}Formulae${off}" - echo "${formulae}" | sed "s/^\(.*\):\(.*\)$/\1${blue}\2${off}/" - echo "\n${blue}==>${off} ${bold}Casks${off}\n${casks}" -} |