diff options
Diffstat (limited to 'main.c')
-rw-r--r-- | main.c | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -14,6 +14,7 @@ #endif #include "src/packages.h" #include "src/cpu.h" +#include "src/gpu.h" #include "src/memory.h" const char *sofname = "farfetch"; @@ -127,6 +128,12 @@ int main(int argc, char *argv[]) { lc++; printf("%s ", LOGO[lc]); + printf(COLOR"%s%s"RESET, "GPU", ": "); + display_gpu(); + printf("\n"); + lc++; + + printf("%s ", LOGO[lc]); printf(COLOR"%s%s"RESET, "Memory", ": "); display_memory(); printf("\n"); |