Skip to content

Instantly share code, notes, and snippets.

@CristianAbrante
Last active January 20, 2024 16:26
Show Gist options
  • Select an option

  • Save CristianAbrante/fbff9522ae36a5196e5c76d3a21aac67 to your computer and use it in GitHub Desktop.

Select an option

Save CristianAbrante/fbff9522ae36a5196e5c76d3a21aac67 to your computer and use it in GitHub Desktop.
Installation setup
#!/bin/zsh
# This is a script to install all the software I use in my Mac.
# This assumes brew is installed in the system. if not, go to https://brew.sh/
# How to use:
# ./install-software.sh
# programs to install first
# iterm2
programs=(
# basics
"visual-studio-code"
"google-chrome"
"notion"
"slack"
"ticktick"
"rectangle"
"docker"
"1password"
"fig"
"cron"
"google-cloud-sdk"
# personal
"adobe-creative-cloud"
"vlc"
"telegram"
"skype"
"discord"
"google-drive"
"whatsapp"
"spotify"
)
cli=(
# personal
"pyenv"
"tfenv"
"nvm"
"gh"
)
for program in $programs; do
brew install --cask $program
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment