Skip to content

Instantly share code, notes, and snippets.

@chrisfcarroll
Last active March 16, 2022 12:51
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 chrisfcarroll/de89a221918652e62b443908f9097394 to your computer and use it in GitHub Desktop.
Save chrisfcarroll/de89a221918652e62b443908f9097394 to your computer and use it in GitHub Desktop.
Bootstrap macOs fresh install. Part 1
#! /bin/zsh
#
# Manual Install packages
open https://www.sublimetext.com
open https://www.perforce.com/downloads/visual-merge-tool
open https://dotnet.microsoft.com
open https://code.visualstudio.com
open https://my.parallels.com
open https://brew.sh
open https://www.wolfram.com/mathematica/
open https://github.com/osxfuse/osxfuse/releases
open https://www.veracrypt.fr/
open https://nodejs.org
open https://postgresapp.com/
open https://www.mozilla.org/en-GB/firefox/developer/
#
xcode-select install
mkdir -p ~/Source/Repos ~/Source/Scratch ~/Source/3rd
#
read "?Press a key to continue with brew installs"
while [[ ! -x $(which brew) ]] ; do
read "?Waiting for brew to be installed. Press a key to continue when ready"
done
#CLI
brew install git
brew install fish
brew install sqlite
#Python
brew install python
brew install poetry
#PowerShell and .Net System.Drawing.Common
while [[ ! -x $(which dotnet) ]] ; do
read "?Waiting for dotnet to be installed. Press a key to continue when ready"
done
brew install mono-libgdiplus
brew install --cask powershell
#dotnet more
dotnet tool install --global dotnet-ef
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment