All cleaned up

This commit is contained in:
2017-10-15 14:44:53 +02:00
parent 64f51a60eb
commit 35f36a4300
5 changed files with 67 additions and 52 deletions

30
homebrew/setup.sh Executable file
View 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 "$@"