Update dotfiles/.local/Brewfile.dev, dotfiles/.profile, dotfiles/.bashrc, dotfiles/.local/Winget.full, dotfiles/.local/Brewfile.full

This commit is contained in:
Brian Zalewski 2022-11-21 06:09:59 +00:00
parent c347d30617
commit 9a15eff4a6
5 changed files with 6 additions and 2 deletions

View file

@ -52,7 +52,7 @@ fi
### Bash Completions
if [ "$0" = 'bash' ] || [ "$0" = '/bin/bash' ]; then
### direnv
if command -v direnv; then
if command -v direnv > /dev/null; then
eval "$(direnv hook bash)"
fi

View file

@ -229,6 +229,7 @@ cask "lens"
cask "microsoft-teams"
# @cask [macfuse](https://osxfuse.github.io/) - Extends macOS by adding support for user space file systems
cask "macfuse"
cask "parallels"
# @cask [postman](https://www.postman.com/) - Collaboration platform for API development
cask "postman"
# @cask [slack](https://slack.com/) - Team communication and collaboration software

View file

@ -4,3 +4,5 @@
brew "cointop"
brew "translate-shell"
cask "google-assistant"

View file

@ -0,0 +1 @@
g-assist

View file

@ -230,7 +230,7 @@ fi
# BW_CLIENTSECRET
### curlie
if command -v curlie; then
if command -v curlie > /dev/null; then
alias curl='curlie'
fi