All cleaned up
This commit is contained in:
30
homebrew/setup.sh
Executable file
30
homebrew/setup.sh
Executable file
@@ -0,0 +1,30 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
source ${DOTFILES}/helpers.sh
|
||||
|
||||
function main()
|
||||
{
|
||||
print_info "Setting up homebrew and brewing misc stuff"
|
||||
|
||||
if ! which brew>/dev/null; then
|
||||
echo "Installing Homebrew"
|
||||
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
|
||||
fi
|
||||
|
||||
if ! brew tap | grep caskroom/cask >/dev/null; then
|
||||
echo "Installing caskroom tap"
|
||||
brew tap caskroom/cask
|
||||
fi
|
||||
|
||||
|
||||
caskget google-chrome
|
||||
caskget docker
|
||||
caskget caskroom/drivers/logitech-options
|
||||
|
||||
brewget arp-scan
|
||||
brewget neovim
|
||||
|
||||
print_ok "Homebrew and misc. brews insalled"
|
||||
}
|
||||
|
||||
main "$@"
|
||||
Reference in New Issue
Block a user