mac-menu-bar-stats
Simple macOS menu bar app for system monitoring
brew install --cask larskemper/cask/system-statsDownload the DMG for your architecture:
- Apple Silicon: system-stats-aarch64.dmg
- Intel: system-stats-x86_64.dmg
The distributed DMG files are built without macOS quarantine flags, so they should install without Gatekeeper warnings.
If you encounter a "cannot be opened because the developer cannot be verified" message, you can manually remove the quarantine flag:
# Remove quarantine from the app
xattr -dr com.apple.quarantine "/Applications/System Stats.app"
# Verify removal (should return "No such xattr" or no output)
xattr -l "/Applications/System Stats.app"Then try opening the app again.
- Battery percentage and charging state
- CPU usage across all cores
- Memory usage and utilization percentage
/src- Rust source code/icons- Application icons/capabilities- Tauri security capabilities/gen- Generated schema files/target- Build artifacts
Ensure you have the following installed:
- Rust (latest stable)
- Xcode Command Line Tools
Run in development mode:
cargo run tauri devBuild the application:
cargo buildOutput location:
target/release/bundle/macos/
Check for errors:
cargo checkRun linter:
cargo clippyFormat code:
cargo fmt
