summaryrefslogtreecommitdiff
path: root/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'main.c')
-rw-r--r--main.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/main.c b/main.c
index 6a13b72..9d8009d 100644
--- a/main.c
+++ b/main.c
@@ -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");