Skip to content

Instantly share code, notes, and snippets.

@starkej2
Last active August 1, 2023 17:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save starkej2/613f66acda7ee36c0525fe9a2f372baf to your computer and use it in GitHub Desktop.
Save starkej2/613f66acda7ee36c0525fe9a2f372baf to your computer and use it in GitHub Desktop.
Installs the software I use on OSX
#!/bin/sh
# ------------------------- GENERAL ------------------------- #
# install xcode command line tools
xcode-select —install
# install and setup homebrew
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"
echo 'eval "$(/opt/homebrew/bin/brew shellenv)"' >> /Users/jstarke/.zprofile
eval "$(/opt/homebrew/bin/brew shellenv)"
# install and configure Z shell
brew install zsh
chsh -s $(which zsh)
touch ~/.zshrc
sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
# TODO download and install my .zprofile config gist
brew install \
micro \
brew install --cask \
atext \
bartender \
firefox \
finicky \
google-drive \
mas \
raycast \
rocket \
slack \
thunderbird \
tiles \
zoom \
# ------------------------- PERSONAL ------------------------- #
brew install --cask \
audacity \
bitwarden \
cryptomator \
darktable \
digikam \
discord \
google-drive \
libreoffice \
notion \
obsidian \
pocket-casts \
quik \
signal \
spotify \
steam \
telegram \
whatsapp \
yt-music \
mas install 1475387142 # tailscale
# ------------------------- WORK ------------------------- #
brew install \
hashicorp/tap/vault \
brew install --cask \
brave-browser \
google-drive \
pomotroid \
openvpn-connect \
slack \
toggl-track \
zoom \
# ------------------------- SOFTWARE ENGINEERING ------------------------- #
brew install \
gifski \
git \
withgraphite/tap/graphite \
gnupg \
kotlin \
ktlint \
node \
python \
brew install --cask \
temurin \
temurin11 \
temurin17 \
android-studio \
charles \
db-browser-for-sqlite \
insomnia \
intellij-idea \
jetbrains-toolbox \
shottr \
vysor \
warp \
# TODO download and install my .gitconfig gist
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment