Last active
March 20, 2025 19:19
-
-
Save codenamezjames/21783519994d7680715073bc968f5627 to your computer and use it in GitHub Desktop.
This file contains 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 | |
echo Install Mac App Store apps first. ( xcode ) | |
read -p "Press any key to continue… " -n1 -s | |
echo '\n' | |
# Check that Homebrew is installed and install if not | |
if test ! $(which brew) | |
then | |
echo " Installing Homebrew" | |
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" | |
fi | |
# UI Apps | |
brew install --cask \ | |
1password \ | |
adobe-creative-cloud \ | |
altair-graphql-client \ | |
bettertouchtool \ | |
caffeine \ | |
cursor \ | |
discord \ | |
orbstack \ | |
firefox \ | |
gitkraken \ | |
google-chrome \ | |
karabiner-elements \ | |
microsoft-office \ | |
minecraft \ | |
notion \ | |
slack \ | |
spotify \ | |
steam \ | |
studio-3t \ | |
termius \ | |
visual-studio-code \ | |
zoom | |
# CLI Apps | |
brew install \ | |
curl \ | |
git \ | |
gradle \ | |
htop \ | |
mkcert \ | |
mosh \ | |
nano \ | |
nss \ | |
nvm \ | |
rsync \ | |
scrcpy \ | |
socat \ | |
wget \ | |
zsh | |
sh -c "$(wget https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh -O -)" | |
git config --global user.name "James Harrington" | |
git config --global user.email "[email protected]" | |
git config --global credential.helper osxkeychain |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment