My favorite apps
This are my favorite apps and the script that use to download and install most of them automatically. Mac OS.
Favorite Apps
Productivity
- Arc Browser, My favorite browser, and essential tool.
- Discord, My communications hub.
Bepper, Another communications hubNotion, My do it all tool. Cms, Database, and tracker.⬇️ replaced with obsidian- Obsidian, My do it all tool. Journal, Database, and tracker.
- Drafts, My favorite writing app. Where I write all my drafts of my blogs.
- Bitwarden, My Password manager (Open Source).
- Wireguard, VPN Service of choice. Not so user-friendly (Open Source).
- Raycast, super-powered spotlight replacement.
- Ollama, Llama based terminal tool to easily run models locally.
Quality of life
- Backtrack App that records the last two hours in the background and lets you save it as a voice memo, great for lectures ( what I used it for).
Tiles, Windows management like windows on Mac.- Rescue-time, Time tracking.
- Dozer, It hides the top menu icons automatically
- Grammarly, Fixes my typos...
- Cheatsheet, It tells me all the shortcuts.
- Latest, Update all my mac apps all at once.
Software Dev
- Github Desktop, Git as a UI.
- Cursor, Coding IDE.
- Docker
- Wireshark, Network and package scanning tool
- Visbug, UI and Visual design tool.
- Balena Etcher, SD cards flashing (Open Source).
- SSHX, SSH from anywhere and anything that has a browser.
- Gemini CLI
- Jules, Cloud based coding agent.
Utilities
- Veracrypt, Encryption tool (Open Source).
- Proton-VPN, VPN service of choice.
- Wireguard, VPN tool to roll my own VPN to my network.
- GrandPerspective, Check were all your storage is going.
- Tailscale, VPN with local access to your network made easy!
- Lulu, Firewall / security app by objective-see FOLLOW THEM
- Taskexplorer, Task explorer by objective-see
- TempBox, temporary email with inbox
Photography
- Film Lab, Turns negatives film scans into positives photos.
- Image Optim, Image optimizer.
- Capture one, Lightroom alternative
- Pixelmator Pro, Photoshop alternative
- Optyx 2, AI powered photo curl.
- Diffusion Bee,
Entertainment
- Dolphin, Nintendo emulator (Open Source).
- Flixxer, Netflix App for mac, no longer available.
- Retroarch,
Automation Script
Something else that is a great idea is to have a script that install and downloads all the tools, and software on your computer automatically. It would save a couple of hours from trying to remember what you need to download or if you forgot anything any time you buy or format your computer. Link to the Repo
#!/usr/bin/env bash
# This is heavily inspired by the amazing work that this guys did!
# https://github.com/craychee/loki-init
# https://github.com/lukewertz/gabriel-init
# https://github.com/froboy/durandal-init
# https://github.com/ibuys/mac-builder
function pause() {
read -p "$*"
}
CWD=($PWD)
cd ~
# We can't get them directly, but just click this button :)
xcode-select --install
pause 'Press [Enter] once you have installed XCode and XCode Command Line Tools.'
# Just make sure...
sudo xcodebuild -license accept
# DANGER, DANGER Will Robinson! 🤖
sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
# HOMEBREW
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
# Software Dev
brew update
brew install wget
brew install git
brew install node
brew install npm
brew install python
brew install python3
brew install mysql
brew install heroku
brew install --cask github
brew install --cask visual-studio-code
# MISC APPS
brew install --cask spotify
brew install --cask brave-browser
brew install --cask evernote
brew install --cask notion
brew install --cask bitwarden
brew install --cask calibre
brew install --cask veracrypt
brew install --cask wireshark
brew install --cask google-drive
brew install --cask imageoptim
brew install --cask protonvpn
brew install --cask virtualbox
brew install --cask virtualbox-extension-pack
# Communictations
brew install --cask whatsapp
brew install --cask zoom
brew install --cask discord
# Quality of Life
brew install zsh-autosuggestions
brew install zsh-syntax-highlighting
brew install --cask dozer
brew install --cask tiles
brew install --cask balenaetcher
# MAC CLI, Simplify command line
sh -c "$(curl -fsSL https://raw.githubusercontent.com/guarinogabriel/mac-cli/master/mac-cli/tools/install)"
brew install mas
mas signin ronnycoste@pm.me
mas install 803453959 # Slack
# mas install 1147396723 #Whatsapp
mas install 1477089520 # Backtrack
mas install 966085870 # TICKTICK
mas install 1435957248 # DRAFTS
brew install brew-cask
brew tap caskroom/cask
brew tap homebrew/dupes
brew tap homebrew/versions
brew tap homebrew/binary
brew cask install Transmit
# Setup Python, Virtualenv
# http://gmvault.org/
python3 -m venv ~/Unix/env/virtualenv
source ~/Unix/env/virtualenv
pip install virtualenv
virtualenv -p /usr/bin/python ~/Unix/env/py2env
deactivate
cd ~
# Do the Mac thing that you have to do but you shouldn't have to do
# This https://github.com/jirsbek/SSH-keys-in-macOS-Sierra-keychain
#curl -o ~/Library/LaunchAgents/ssh.add.a.plist https://raw.githubusercontent.com/jirsbek/SSH-keys-in-macOS-Sierra-keychain/master/ssh.add.a.plist
touch ~/.ssh/config
echo "Host *
AddKeysToAgent yes
UseKeychain yes" >> ~/.ssh/config
# Hold my own hand to make sure I finish configuring.
echo "Add your ssh keys (you put them in your secret hiding place)."
pause 'Press [Enter] when you have added your ssh key.'
chmod 400 ~/.ssh/*
# Get git things
#curl -o /usr/local/etc/bash_completion.d/git-prompt.sh https://raw.githubusercontent.com/git/git/master/contrib/completion/git-prompt.sh
#curl -o /usr/local/etc/bash_completion.d/git-completion.bash https://raw.githubusercontent.com/git/git/master/contrib/completion/git-completion.bash
echo "NICE!! But... This is only the Beggining."
Feel free to modify this script to your needs!
Updated on July 20, 2025