My Solution code for System Monitor Project in the C++ OOP course.
- Clone repo
git clone https://github.com/mprostock/CppND-System-Monitor
- Install
ncurses
package
sudo apt-get install libncurses5-dev libncursesw5-dev
- 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