├── .gitignore ├── LICENSE ├── README.md ├── cpu.c ├── disk.c ├── makefile ├── modules.h ├── network.c ├── ram.c ├── termbox.h ├── utils.c ├── utils.h └── vitals.c /.gitignore: -------------------------------------------------------------------------------- 1 | vitals 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJumbo/vitals/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJumbo/vitals/HEAD/README.md -------------------------------------------------------------------------------- /cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJumbo/vitals/HEAD/cpu.c -------------------------------------------------------------------------------- /disk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJumbo/vitals/HEAD/disk.c -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJumbo/vitals/HEAD/makefile -------------------------------------------------------------------------------- /modules.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJumbo/vitals/HEAD/modules.h -------------------------------------------------------------------------------- /network.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJumbo/vitals/HEAD/network.c -------------------------------------------------------------------------------- /ram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJumbo/vitals/HEAD/ram.c -------------------------------------------------------------------------------- /termbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJumbo/vitals/HEAD/termbox.h -------------------------------------------------------------------------------- /utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJumbo/vitals/HEAD/utils.c -------------------------------------------------------------------------------- /utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJumbo/vitals/HEAD/utils.h -------------------------------------------------------------------------------- /vitals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJumbo/vitals/HEAD/vitals.c --------------------------------------------------------------------------------