bash -c "$(gh gist view 10011850e542c8b2df4c5de4446e1b82 -f macos-software.sh)"
Last active
June 9, 2025 18:51
-
-
Save Im0rtality/10011850e542c8b2df4c5de4446e1b82 to your computer and use it in GitHub Desktop.
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
#!/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