Last active
May 18, 2019 17:42
-
-
Save githiro/b7abda6fea0e9b008f2b1734a1807c10 to your computer and use it in GitHub Desktop.
Shell: Auto setup system for macOS.
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
# Install Homebrew | |
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" | |
brew update | |
brew upgrade --all | |
brew doctor | |
brew -v | |
# Install CLI Commands | |
brew install wget | |
brew install tree | |
# Install git | |
brew install git | |
git --version | |
# Install Homebrew cask | |
brew tap caskroom/cask | |
# Install an Apps that's not in Mac App Store | |
brew cask install google-chrome | |
brew cask install atom | |
brew cask install docker | |
brew cask install sourcetree | |
brew cask install iterm2 | |
brew cask install vagrant | |
brew cask install virtualbox | |
#brew cask install android-studio | |
# Install mascil(Auto-download & install App Store's app: https://github.com/mas-cli/mas) | |
brew install mas | |
mas install 497799835 # Xcode | |
mas install 803453959 # Slack | |
mas install 595191960 # CopyClip | |
mas install 957734279 # Toggl | |
mas install 1091189122 # Bear | |
mas install 540348655 # MonoSnap | |
# [Optional] Install Ricty: Programming font | |
brew tap sanemat/font | |
brew install ricty | |
cp -f /usr/local/opt/ricty/share/fonts/Ricty*.ttf ~/Library/Fonts/ | |
fc-cache -vf | |
# Delete downloaded zip files. | |
brew cask cleanup | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment