Install Macnite

Install Macnite. One command.

Grab the Macnite cask from our Homebrew tap. Same one-liner format the rest of the site builds for you — it installs Homebrew if missing, tracks any failures, and prints a done report.

The command

command -v brew >/dev/null 2>&1 || /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" && eval "$(/opt/homebrew/bin/brew shellenv 2>/dev/null || /usr/local/bin/brew shellenv)" && macnite_fails="" && macnite_start=$SECONDS && for c in seanblowers/macnite/macnite; do brew install --cask "$c" || macnite_fails="$macnite_fails $c"; done && if [ -n "$macnite_fails" ]; then echo; echo "Could not install:$macnite_fails"; echo "(They may already be installed manually — move them to the Trash, then re-run.)"; fi && { macnite_elapsed=$((SECONDS - macnite_start)); macnite_fail_count=$(echo "$macnite_fails" | wc -w | tr -d " "); macnite_ok=$((1 - macnite_fail_count)); echo; echo "All done — $macnite_ok apps installed in $((macnite_elapsed / 60))m $((macnite_elapsed % 60))s. You saved ~$((macnite_ok * 10)) clicks."; } && { curl -fsSL https://macnite.seanblowers.app/install-banner.txt 2>/dev/null || true; }

Paste it into Terminal (press +Space, type Terminal, hit Enter) and press Enter. The Macnite ASCII banner prints at the end so you know it's done.

What you get