Last active
January 20, 2024 16:26
-
-
Save CristianAbrante/fbff9522ae36a5196e5c76d3a21aac67 to your computer and use it in GitHub Desktop.
Installation setup
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/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