Skip to content

Latest commit

 

History

History
20 lines (14 loc) · 1.12 KB

File metadata and controls

20 lines (14 loc) · 1.12 KB

Linux System Monitor

This Linux System Monitor shows what is happening on your computer: processes, id, CPU and memory usage, and more. It is an object-oriented C++ program similar to Htop and Task Manager.

screenshot

ncurses

ncurses is a library that facilitates text-based graphical output in the terminal. This project relies on ncurses for display output.

Make

This project uses Make. The Makefile has four targets:

  • build compiles the source code and generates an executable
  • format applies ClangFormat to style the source code
  • debug compiles the source code and generates an executable, including debugging symbols
  • clean deletes the build/ directory, including all of the build artifacts

CppND-System-Monitor

This is my implementation of the Process Monitor project.

Starter code for System Monitor Project in the Object Oriented Programming Course of the Udacity C++ Nanodegree Program.