Last active
May 27, 2022 15:03
-
-
Save vilanovi/e75ec3433c83d9b3d155c9760fb20b1d to your computer and use it in GitHub Desktop.
System Bootsrap installation for apps
This file contains hidden or 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/bash | |
## GEMS | |
# Coding | |
sudo gem install cocoapods | |
sudo gem install fastlane | |
## Homebrew | |
# Install Homebrew | |
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" | |
echo 'eval "$(/opt/homebrew/bin/brew shellenv)"' >> ~/.zprofile | |
eval "$(/opt/homebrew/bin/brew shellenv)" | |
# Media | |
brew install --cask spotify | |
brew install --cask vlc | |
brew install ffmpeg | |
# Tools | |
brew install --cask iterm2 | |
brew install --cask arq | |
brew install --cask setapp | |
brew install --cask numi | |
brew install --cask bartender | |
brew install --cask grammarly-desktop | |
brew install --cask monitorcontrol | |
brew install --cask istat-menus | |
brew install --cask google-drive | |
brew install --cask google-chrome | |
brew install --cask airserver | |
brew install --cask nordvpn | |
brew install --cask geekbench | |
# Password Manager | |
brew install --cask bitwarden | |
brew install --cask 1password | |
brew install --cask 1password-cli | |
# Communication | |
brew install --cask whatsapp | |
brew install --cask telegram | |
brew install --cask slack | |
brew install --cask discord | |
brew install --cask skype | |
# Coding | |
brew install --cask cmake | |
brew install --cask jetbrains-toolbox | |
brew install --cask visual-studio-code | |
brew install --cask charles | |
brew install --cask sourcetree | |
brew install --cask postman | |
brew install --cask xcodes | |
# Design | |
brew install --cask abstract | |
brew install --cask sketch | |
brew install --cask skitch | |
# Gaming | |
brew install --cask steam | |
## Cusotmizations | |
# Iterm2 animation speed | |
defaults write com.googlecode.iterm2 HotkeyTermAnimationDuration -float 0.05 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment