Skip to content

Instantly share code, notes, and snippets.

@smokills
Last active December 19, 2017 14:10
Show Gist options
  • Save smokills/4c81fbc2d95d2922409990b0e0873fed to your computer and use it in GitHub Desktop.
Save smokills/4c81fbc2d95d2922409990b0e0873fed to your computer and use it in GitHub Desktop.
CAFFEINA marketing base installer
#!/usr/bin/env bash
which -s brew
if [[ $? != 0 ]] ; then
printf "Brew not found. Installing brew... \n"
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
else
printf "Brew already installed. Updating current version... \n"
brew update
fi
printf "Installing software: \n"
printf "avg-antivirus \n"
brew cask install avg-antivirus
printf "done! \n"
printf "slack \n"
brew cask install slack
printf "done! \n"
printf "google chrome \n"
brew cask install google-chrome
printf "done! \n"
printf "google drive \n"
brew cask install google-drive-file-stream
printf "done! \n"
printf "lastpass \n"
brew cask install lastpass
printf "done! \n"
printf "the unarchiver \n"
brew cask install the-unarchiver
printf "done! \n"
printf "microsoft office \n"
brew cask install microsoft-office
printf "done! \n"
printf "Process finished!"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment