1
0
mirror of https://github.com/tiyn/dwmblocks.git synced 2025-04-19 16:17:47 +02:00

added player

This commit is contained in:
tiyn 2024-03-09 02:52:53 +01:00
parent 6408f5ad98
commit 2db2956e42
2 changed files with 2 additions and 1 deletions

View File

@ -4,6 +4,7 @@
#include "util.h" #include "util.h"
Block blocks[] = { Block blocks[] = {
{"player", 5, 9},
{"memory", 30, 6}, {"memory", 30, 6},
{"cpu", 30, 5}, {"cpu", 30, 5},
{"gpu", 30, 8}, {"gpu", 30, 8},

View File

@ -1,6 +1,6 @@
#pragma once #pragma once
#define CLICKABLE_BLOCKS 0 // Enable clickability for blocks #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 DELIMITER " " // Delimiter string used to separate blocks
#define LEADING_DELIMITER 0 // Whether a leading separator should be used #define LEADING_DELIMITER 0 // Whether a leading separator should be used