Skip to content

Instantly share code, notes, and snippets.

@codenamezjames
Last active March 20, 2025 19:19
Show Gist options
  • Save codenamezjames/21783519994d7680715073bc968f5627 to your computer and use it in GitHub Desktop.
Save codenamezjames/21783519994d7680715073bc968f5627 to your computer and use it in GitHub Desktop.
#!/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