Better Resource Monitor

Better Resource Monitor

A menu bar/tray system monitor for macOS.

Download on the Mac App Store Download macOS on GitHub Releases

Why Comparison Installation

Why I built this

Most system monitors (Stats, iStat Menus) need a privileged helper tool to read fan speeds and thermal sensors. That means entering your admin password and running code at root level. I didn’t want that on my machine.

Better Resource Monitor uses only public macOS APIs. No root privileges, no private APIs, no dock icon. Runs sandboxed.

Because it avoids private Apple APIs (which can break between macOS updates), it’s on the Mac App Store with full features. Not a stripped-down “lite” version like other monitors are forced to ship there.

Other monitors poll every sensor they can find, which prevents Apple Silicon from entering deep sleep states. I only track four metrics (CPU, memory, network, GPU), it’s all Rust, and the numbers reflect that. Under 0.1% CPU, roughly 15 MB of RAM. No clock replacement, no weather widget, no fan control.

How it works

ComponentmacOS
CPU/Memory/Networksysinfo crate
GPU MetricsIOAccelerator (public IOKit API)

None of this needs sudo.

Comparison

Feature Better Resource Monitor Stats Eul iStat Menus
Mac App StoreYes (full features)NoLimitedLimited
Admin Password / PrivilegesNone (sandboxed)Requires root helperNoneRequires root helper
GPU API StabilityPublic APIPrivate APIPrivate APIProprietary
Memory Footprint~15 MB~50 MB~40 MB~100+ MB
CPU / Energy Impact< 0.1%~1%High (M-series)~1%
App Size< 7 MB~25 MB~5 MB~65 MB
Privacy/Telemetry100% offlineOfflineOfflineAnalytics
StatusActiveActiveUnmaintainedActive
LanguageRustSwift / C++SwiftObj-C / Swift
PriceFreeFreeFree$14.99
LicenseMITMITMITProprietary

Third-party numbers are rough estimates. Your mileage may vary.

Installation

Get it from the Mac App Store (includes automatic updates) or grab the .dmg from GitHub Releases.

Build from Source

You’ll need Tauri v2 prerequisites and pnpm.

git clone https://github.com/alexx855/better-resource-monitor.git
cd better-resource-monitor
pnpm install
pnpm tauri build

Development

# Run in development mode with hot reload
pnpm tauri dev

# Run tests
cd src-tauri && cargo test

# Run tests with coverage (requires cargo-llvm-cov)
cargo install cargo-llvm-cov
cd src-tauri && cargo llvm-cov --lib --html --output-dir coverage/

Credits