️ A real-time terminal-based system monitor built with C++ for macOS.
Displays live CPU usage, memory usage, and a snapshot of running processes using a dynamic ncurses-based dashboard.
- Real-time CPU & memory monitoring
- Terminal UI using
ncurses
- Live process listing (like
top
) - Built for macOS using
sysctl
&ps
Below is a live demo screenshot of ProcTrack
running on macOS terminal with CPU, Memory, and Process info:
- C++
- ncurses (terminal UI)
- macOS system calls (
sysctl
,/proc
,ps
) make
build system
ProcTrack/ ├── include/ # Header files ├── src/ # Source files ├── Makefile # Build system ├── README.md # Project info └── .gitignore # Ignore temp files