31 lines
609 B
Bash
Executable File
31 lines
609 B
Bash
Executable File
#!/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 "$@"
|