From a0b6428f4aacf11ab0a63e5077c3509de7085d5d Mon Sep 17 00:00:00 2001 From: Noah Swerhun Date: Fri, 4 Jun 2021 23:21:03 -0500 Subject: [PATCH] added volume module --- blocks.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/blocks.h b/blocks.h index c9bfbe6..b4277b1 100644 --- a/blocks.h +++ b/blocks.h @@ -1,14 +1,15 @@ //Modify this file to change what commands output to your statusbar, and recompile using the make command. static const Block blocks[] = { /*Icon*/ /*Command*/ /*Update Interval*/ /*Update Signal*/ - {"", "supgrades", 1200, 0}, + {"", "supgrades", 1200, 1}, {"", "sweather", 300, 0}, {"💾 ", "sdisk", 1200, 0}, + {"", "svol", 0, 2}, {"📃 ", "smem", 5, 0}, {"🌡 ", "scpu", 5, 0}, /* {"", "statusbat", 10, 0}, */ {"🗓 ", "sdate", 1, 0}, - {"⌚ ", "stime", 1, 0}, + {"⌚ ", "stime", 1, 0}, }; //sets delimeter between status commands. NULL character ('\0') means no delimeter.