This page documents supported update and uninstall procedures for Gloamy on macOS (OS X).
Last verified: February 22, 2026.
which gloamy
gloamy --versionTypical locations:
- Homebrew:
/opt/homebrew/bin/gloamy(Apple Silicon) or/usr/local/bin/gloamy(Intel) - Cargo/bootstrap/manual:
~/.cargo/bin/gloamy
If both exist, your shell PATH order decides which one runs.
brew update
brew upgrade gloamy
gloamy --versionFrom your local repository checkout:
git pull --ff-only
./bootstrap.sh --prefer-prebuilt
gloamy --versionIf you want source-only update:
git pull --ff-only
cargo install --path . --force --locked
gloamy --versionRe-run your download/install flow with the latest release asset, then verify:
gloamy --versionThis prevents the daemon from continuing to run after binary removal.
gloamy service stop || true
gloamy service uninstall || trueService artifacts removed by service uninstall:
~/Library/LaunchAgents/com.gloamy.daemon.plist
Homebrew:
brew uninstall gloamyCargo/bootstrap/manual (~/.cargo/bin/gloamy):
cargo uninstall gloamy || true
rm -f ~/.cargo/bin/gloamyOnly run this if you want a full cleanup of config, auth profiles, logs, and workspace state.
rm -rf ~/.gloamycommand -v gloamy || echo "gloamy binary not found"
pgrep -fl gloamy || echo "No running gloamy process"If pgrep still finds a process, stop it manually and re-check:
pkill -f gloamy