/CppND-System-Monitor

Solution for C++ Nanodegree project "System Monitor"

Primary LanguageC++MIT LicenseMIT

CppND-System-Monitor

My Solution code for System Monitor Project in the C++ OOP course.

To setup and compile:

  1. Clone repo
git clone https://github.com/mprostock/CppND-System-Monitor
  1. Install ncurses package
sudo apt-get install libncurses5-dev libncursesw5-dev
  1. Compile and run
g++ -std="c++17" main.cpp -lncurses
./a.out

Or you can check out the original starter code from udacity:

git clone https://github.com/mprostock/CppND-System-Monitor