Last active
March 30, 2020 21:15
-
-
Save asmorger/07a95f87cfa99e76d2d2701e9044ea51 to your computer and use it in GitHub Desktop.
.Net Core OSX Development
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 | |
| # Requires Homebrew be installed | |
| declare -a apps=( | |
| "git" "gitkraken" "dotnet" "iterm2" "visual-studio-code" "rider" "datagrip" "github/gh/gh" | |
| "nvm" "adr-tools" "monodraw" "freedom" "kiwi-for-g-suite" "alfred" "bartender" "lastpass" | |
| "moom" "karabiner-elements" "sensei" "wget" "spotify" "ubar" "docker" | |
| "docker-compose" "notion" "slack" "postman" "oracle-jdk" "google-cloud-sdk" "node@10" | |
| "keyboard-maestro" "fzf" "lastpass-cli") | |
| for val in ${apps[@]}; do | |
| brew cask install $val | |
| done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment