Last active
May 5, 2025 22:55
-
-
Save dshemetov/8e03812af9077e1db623dc9f532f34c0 to your computer and use it in GitHub Desktop.
Installer for a fresh Mac
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
# Mac Setup Helper | |
# | |
# This my helper script for setting up a new Mac. It's not meant to be run | |
# as-is, but rather to be used as a reference for setting up a new Mac. | |
# | |
# Some resources I used: | |
# - An in-depth setup guide https://sourabhbajaj.com/mac-setup/ | |
# Install xcode, many basics for Mac dev | |
xcode-select --install | |
# Install brew | |
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" | |
# Install a few utilities | |
brew install xz pyenv wget zsh git uv | |
# Install oh-my-zsh https://github.com/ohmyzsh/ohmyzsh/ | |
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" | |
# Install useful programs | |
brew install --cask \ | |
adobe-acrobat-reader \ | |
audacity \ | |
audio-hijack \ | |
cleanmymac \ | |
discord \ | |
djview \ | |
firefox \ | |
gimp \ | |
guitar-pro \ | |
hyper \ | |
kindle \ | |
loopback \ | |
obsidian \ | |
reaper \ | |
rocket \ | |
signal \ | |
slack \ | |
spotify \ | |
steam \ | |
supercollider \ | |
syncthing \ | |
telegram \ | |
visual-studio-code \ | |
vlc \ | |
whatsapp \ | |
zoom \ | |
zotero | |
# Copy .zshrc, .zprofile, ssh keys, etc. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment