Last active
June 12, 2019 07:59
-
-
Save CiprianSpiridon/0fae4e26d3777e3da65287cf183fe48a to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
echo Install all AppStore Apps at first! | |
# no solution to automate AppStore installs | |
read -p "Press any key to continue... " -n1 -s | |
echo '\n' | |
xcode-select --install | |
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" | |
brew tap caskroom/cask | |
brew install brew-cask | |
brew install python | |
brew install go | |
brew install vim | |
brew install wget | |
brew install node | |
brew install git | |
brew cask install docker | |
brew install docker-compose | |
brew cask install --appdir="~/Applications" iterm2 | |
brew cask install --appdir="~/Applications" google-chrome | |
brew cask install --appdir="~/Applications" firefox | |
brew cask install --appdir="~/Applications" sublime-text | |
brew cask install --appdir="/Applications" skype | |
brew cask install --appdir="/Applications" whatsapp | |
brew cask install --appdir="/Applications" slack | |
brew cask install microsoft-teams | |
brew install composer | |
npm install -g expo-cli | |
npm install -g bower | |
brew install yarn | |
brew cask install alfred |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment