Lots of updates.

This commit is contained in:
Derek Taylor
2020-03-19 14:50:17 -05:00
parent 55f24bf77c
commit 3814732157
55 changed files with 981 additions and 7944 deletions

18
dwmblocks/blocks.h Normal file
View File

@@ -0,0 +1,18 @@
//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*/
{" 🐧 ", "kernel", 360, 2},
{"", "upt", 60, 2},
{" 📦 ", "pacupdate", 360, 9},
{" 💻 ", "memory", 6, 1},
{" 🔊 ", "volume", 2, 10},
{" 🕑 ", "clock", 5, 0},
};
//sets delimeter between status commands. NULL character ('\0') means no delimeter.
static char delim = '|';