Skip to content

Instantly share code, notes, and snippets.

@TopHatCroat
Created March 22, 2021 08:43
Show Gist options
  • Save TopHatCroat/e11a74998bd4a66f1f1566a1c01a7f49 to your computer and use it in GitHub Desktop.
Save TopHatCroat/e11a74998bd4a66f1f1566a1c01a7f49 to your computer and use it in GitHub Desktop.
Reev setup
#!/bin/sh
echo "Welcome to reev application installer :)"
read -p "Are you developer (yes, no): " ANSWER
# Install HomeBrew
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"
# Install Unarchiver
brew install --cask the-unarchiver
# Install Slack
brew install --cask slack
# Install 1pw
brew install --cask 1password
# Install Chrome
brew install --cask google-chrome
# Install Spotify
brew install --cask spotify
# Install WhatsApp
brew install --cask whatsapp
# Install Acrobat Reader
brew install --cask adobe-acrobat-reader
# Install Office
brew install --cask microsoft-office
# Install Microsoft Teams
brew install --cask microsoft-teams
if [ ${ANSWER} == "yes" ]; then
# Install Git
brew install git
# Install Yarn
brew install yarn
# Install Gradle
brew install gradle
# Install Java 11
brew install --cask homebrew/cask-versions/java11
# Install iTerm2
brew install --cask iterm2
# Install Docker
brew install --cask docker
# Install GitHub
brew install --cask github
# Install SourceTree
brew install --cask sourcetree
# Install Macs Fan Control
brew install --cask macs-fan-control
# Install Spectacle
brew install --cask spectacle
# Install Angry IP Scanner
brew install --cask angry-ip-scanner
# Install Postman
brew install --cask postman
# Install Tunnelblick
brew install --cask tunnelblick
# Install Go2Shell
brew install --cask go2shell
# Install Visual Studio Code
brew install --cask visual-studio-code
# Install Intellij IDEA
brew install --cask intellij-idea
# Install Oh My ZSH
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
# Setup MCON VPN with 1PW
chmod +x ./setup-vpn.sh && ./setup-vpn.sh
fi
echo "Everything is okay, grab a coffee then start working :)"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment