Skip to content

Instantly share code, notes, and snippets.

@PierreBresson
Last active July 3, 2023 12:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save PierreBresson/30e5dd9fb1350463ba02535fe0f80d4c to your computer and use it in GitHub Desktop.
Save PierreBresson/30e5dd9fb1350463ba02535fe0f80d4c to your computer and use it in GitHub Desktop.
Software install for new mac
#!/bin/sh
# === INSTALL HOMEBREW ===
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
# === SOFTWARE ===
brew install --cask android-studio
brew install --cask webtorrent
brew install --cask vscodium
brew install --cask github
brew install --cask vlc
brew install --cask postman
brew install --cask iterm2
brew install --cask kap
brew install --cask java8
brew install --cask buttercup
brew install --cask slack
brew install --cask firefox
brew install --cask signal
brew install --cask tyke
brew install --cask maccy
brew install --cask google-chrome
brew install --cask gh
brew install --cask devtoys
brew install --cask notion
brew install --cask minisim
brew install --cask protonvpn
brew install --cask battery
# === COMMAND LINE TOOLS ===
brew install git
brew install node
brew install cocoapods
# installing zsh
brew install zsh
# change shell to zsh (requires password)
sudo echo `which zsh` >> /etc/shells
chsh `which zsh`
sh -c "$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
brew install zsh-completions
brew install zsh-syntax-highlighting
echo 'export ANDROID_HOME=$HOME/Library/Android/sdk' >> ~/.zshrc
echo 'export PATH=$PATH:$ANDROID_HOME/tools export PATH=$PATH:$ANDROID_HOME/platform-tools' >> ~/.zshrc
echo 'source /usr/local/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh' >> ~/.zshrc
echo DEFAULT_USER=`whoami` >> ~/.zshrc
echo 'ZSH_THEME="agnoster"' >> ~/.zshrc
npm i -g yarn
@PierreBresson
Copy link
Author

sh install.sh

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