Skip to content

Instantly share code, notes, and snippets.

@dmc-at-work
Last active February 18, 2021 07:23
Show Gist options
  • Save dmc-at-work/8d563e24b97510beed73dac79c3cc5aa to your computer and use it in GitHub Desktop.
Save dmc-at-work/8d563e24b97510beed73dac79c3cc5aa to your computer and use it in GitHub Desktop.
MacOS | Clean Install | Bootstrap Script
# MacOS Catalina | zsh
# sh init.sh
##########
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"
##########
##########
# Install Brew Packages
##########
brew install tree
brew install wget
brew install python
export PATH="/usr/local/opt/python/libexec/bin:$PATH"
curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
python get-pip.py
# easy_install pip
brew install go
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
brew install mas
brew install midnight-commander
brew install wifi-password
brew install tldr
brew install neofetch
brew install htop
pip install speedtest-cli
##########
# Install MacOS Applications
##########
brew install --cask google-chrome
brew install --cask vivaldi
brew install --cask firefox
brew install --cask tor-browser
brew install --cask microsoft-edge
brew install --cask virtualbox
brew install --cask gitkraken
brew install --cask sourcetree
brew install --cask spotify
brew install --cask vlc
brew install --cask whatsapp
brew install --cask slack
brew install --cask discord
brew install --cask skype
brew install --cask telegram
brew install --cask microsoft-teams
brew install --cask gimp
brew install --cask skitch
brew install --cask nordvpn
##########
# Development Tools
##########
brew install --cask sublime-text
brew install --cask visual-studio-code
brew install --cask jetbrains-toolbox
##########
# CLI Tools
##########
brew install --cask iterm2
brew install --cask google-cloud-sdk
brew install awscli
brew install azure-cli
@dmc-at-work
Copy link
Author

Updated
go
get-pip.py
etc

@dmc-at-work
Copy link
Author

Updated
rust

@dmc-at-work
Copy link
Author

brew cask install
to
brew install --cask

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment