Crates.io | oversee |
lib.rs | oversee |
version | 0.1.4 |
created_at | 2025-09-19 02:34:21.12244+00 |
updated_at | 2025-09-25 06:20:23.458742+00 |
description | A modern system monitor for macOS with Apple Silicon GPU support |
homepage | https://github.com/abosnjakovic/oversee |
repository | https://github.com/abosnjakovic/oversee |
max_upload_size | |
id | 1845679 |
size | 155,982 |
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.
/
to filter processes by name, port or user (vim-style)j/k
for navigation, g/G
for top/bottom, /
for searchImplements Apple's memory pressure calculation:
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 oversee
git clone https://github.com/your-username/oversee.git
cd oversee
cargo build --release
./target/release/oversee
cargo run --release
Space
: Pause/Resume monitoringq
or ESC
: Quitj/k
or ↑↓
: Navigate process lists
: Cycle through sort modesv
: Toggle GPU visibility+/-
: Adjust timeline scopeg/G
: Jump to top/bottom of process listPress /
to enter filter mode
Type to filter by process name or username
Enter
to apply filter, ESC
to 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 monitoring and history tracking
├── gpu.rs # Apple Silicon GPU monitoring
├── memory.rs # Memory pressure calculation and monitoring
├── process.rs # Process enumeration with user resolution
└── tui.rs # Terminal initialization and cleanup
Contributions welcome! Please:
cargo test
passesMIT License - see LICENSE for details.