A modern system monitor for macOS, inspired by htop and btop++, built in Rust with a focus on Apple Silicon performance monitoring. Why? I wanted to view cpu AND gpu cores. I wanted memory pressure and not just used/swap due to how macs work differently here.
- Process Management: Detailed process list with CPU, memory usage, ports, and user information
- GPU Monitoring: Real-time GPU utilisation via powermetrics (requires sudo)
- htop-style Bar Meters: one bar per CPU core, plus GPU, memory, and swap — load-gradient coloured, in a responsive column grid
- Memory Pressure: the MEM/SWP bars are coloured green/yellow/red to match Activity Monitor's pressure levels
- Smart Filtering: Press
/to filter processes by name, port or user (vim-style) - Vim-style controls:
j/kfor navigation,g/Gfor top/bottom,/for search
Every CPU core gets its own meter, followed by the system-wide GPU figure and
memory/swap. Bar colour tracks load (dim → yellow → orange → red); the MEM and
SWP bars are coloured by memory pressure instead. Press ? in the app for the
full colour key.
Screenshots are generated from
assets/oversee.tapewith vhs:vhs assets/oversee.tape.
Uses macOS's native memory pressure reporting via kern.memorystatus_vm_pressure_level:
- Green (Normal): System has adequate memory and is operating efficiently
- Yellow (Warning): System is under some memory pressure, may be using compression
- Red (Critical): System is under severe memory pressure, performance may be impacted
This matches Activity Monitor's behavior exactly, as both use the same kernel metric.
GPU utilisation is obtained via macOS powermetrics which requires root access. Run oversee with sudo for accurate GPU metrics. Without sudo, GPU shows 0%.
The gpu_power sampler reports one system-wide figure: aggregate hardware active residency. macOS publishes no per-core or per-process GPU breakdown, so oversee shows neither. The GPU% column in the process list displays — rather than a guess.
If you're coming from Windows or Linux, you might be alarmed to see your Mac using 70-80% of its RAM with just a few apps open. Don't panic—this is exactly what macOS is designed to do, and it's actually making your system faster.
Apple follows a fundamental principle: "Unused RAM is wasted RAM." Think of it like a master chef's workspace. While a novice might clean and put away every tool after each use, a professional chef keeps frequently used knives, pans, and ingredients within arm's reach. They know that constantly retrieving and storing tools wastes precious time during service.
macOS treats memory the same way. When you close an app, macOS doesn't immediately purge it from memory. Instead, it marks that memory as "purgeable" but keeps the data cached. Launch the app again, and it springs to life instantly because it never truly left. This is why opening Safari for the second time in a day feels instantaneous compared to that first morning launch.
But here's where macOS truly diverges from its competitors: memory compression. When memory starts filling up, Windows and Linux traditionally start swapping to disk—a slow process that can make your system feel sluggish. macOS, however, first attempts to compress inactive memory pages, squeezing them down to about half their size while keeping them in RAM. It's like vacuum-packing winter clothes in your closet—same items, less space, and much faster to access than retrieving them from the basement.
This compression happens silently in the background. You might have 16GB of RAM with 12GB "used," but several gigabytes of that could be compressed data that macOS can instantly decompress when needed—orders of magnitude faster than reading from even the fastest SSD.
The unified buffer cache is another piece of magic. Unlike traditional systems that maintain separate caches for files and applications, macOS uses a single, intelligent cache that adapts to your usage patterns. Working on a video project? The cache prioritizes your media files. Coding all day? Your source files and development tools get priority. It's constantly learning and adapting.
This is why Memory Pressure, not percentage used, is the true indicator of your Mac's memory health. You could be at 90% memory usage with pressure in the green, and your Mac will feel perfectly responsive because most of that "used" memory is just cached data that can be instantly discarded if needed. It's the difference between a library with books on shelves (high usage, low pressure) versus one with books stacked on every surface including the floors (high usage, high pressure).
So when Oversee shows high memory usage but green pressure, your Mac isn't struggling—it's performing optimally, keeping everything you might need at its fingertips, ready to deliver the smooth, responsive experience Mac users expect.
From cargo via crates.io
cargo install overseeFrom brew
brew install abosnjakovic/oversee- macOS (Apple Silicon or Intel)
- Rust 1.70+ (install via rustup)
git clone https://github.com/abosnjakovic/oversee.git
cd oversee
cargo build --release
./target/release/overseecargo run --releaseFor accurate GPU utilisation data, run with sudo:
sudo cargo run --release
# or after building
sudo ./target/release/overseeWithout sudo, GPU metrics will show 0% (requires access to powermetrics).
Space: Pause/Resume monitoringqorESC: Quitj/kor↑↓: Navigate process listg/G: Jump to top/bottom of process listPage Up/Down,Home/End: Navigate by 10 / to first or lastEnter: Pin/unpin the selected process (shows its full command)s: Cycle through sort modesv: Toggle the GPU barK: Kill the selected process (with confirmation)?: Toggle the help popup
- Press
/to enter filter mode - Type to filter by process name, port, or username
Enterto apply filter,ESCto cancel- Navigation works within filtered results
src/
├── main.rs # Application entry point
├── app.rs # Main application state and event handling
├── ui.rs # Terminal UI rendering and layout
├── cpu.rs # CPU usage sampling
├── gpu.rs # Apple Silicon GPU monitoring
├── memory.rs # Memory pressure calculation and monitoring
├── process.rs # Process enumeration with user resolution
├── theme.rs # Central colour palette
└── tui.rs # Terminal initialisation and cleanup
Contributions welcome! Please:
- Fork the repository
- Create a feature branch
- Add tests for new functionality
- Ensure
cargo testpasses - Submit a pull request
MIT License - see LICENSE for details.


