From 2db2956e427ae8524af7f437d8bd9f1b4a084c26 Mon Sep 17 00:00:00 2001 From: tiyn Date: Sat, 9 Mar 2024 02:52:53 +0100 Subject: [PATCH] added player --- config.c | 1 + config.h | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/config.c b/config.c index fc3907d..5bb9ef5 100644 --- a/config.c +++ b/config.c @@ -4,6 +4,7 @@ #include "util.h" Block blocks[] = { + {"player", 5, 9}, {"memory", 30, 6}, {"cpu", 30, 5}, {"gpu", 30, 8}, diff --git a/config.h b/config.h index bd421e4..7d9ef64 100644 --- a/config.h +++ b/config.h @@ -1,6 +1,6 @@ #pragma once #define CLICKABLE_BLOCKS 0 // Enable clickability for blocks -#define CMDLENGTH 45 // Trim block output to this length +#define CMDLENGTH 130 // Trim block output to this length #define DELIMITER " " // Delimiter string used to separate blocks #define LEADING_DELIMITER 0 // Whether a leading separator should be used