Skip to content

Instantly share code, notes, and snippets.

@Im0rtality
Last active June 9, 2025 18:51
Show Gist options
  • Save Im0rtality/10011850e542c8b2df4c5de4446e1b82 to your computer and use it in GitHub Desktop.
Save Im0rtality/10011850e542c8b2df4c5de4446e1b82 to your computer and use it in GitHub Desktop.
bash -c "$(gh gist view 10011850e542c8b2df4c5de4446e1b82 -f macos-software.sh)"
#!/bin/bash
# https://apple.stackexchange.com/a/376084
brewInstall() { if brew ls --versions "$1" || brew ls --cask --versions "$1"; then brew upgrade "$1"; else brew install "$1"; fi }
# PACKAGE MANAGERS
## ensure Brew is installed
brew -v
## Mac Apple Store
brewInstall mas
# PRODUCTIVITY
## OS tweaks
brewInstall linearmouse
brewInstall hiddenbar
## Tools
brewInstall clipy
brewInstall iterm2
brweInstall caffeinate
### Amphetamine
mas install 937984704
## Misc
brewInstall spotify
## AI Tools
brewInstall chatgpt
# DEVELOPMENT
## IDEs
brewInstall jetbrains-toolbox
# brewInstall cursor
## Runtimes
brewInstall docker
brewInstall ollama
## Devtools
brewInstall syntax-highlight
brewInstall github
brewInstall jq
brewInstall yq
brewInstall watch
brewInstall cloc
brewInstall wget
## Kubernetes tools
brewInstall k9s
brewInstall helm
brewInstall kubernetes-cli
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment