Compare commits

...

6 Commits
semita ... main

Author SHA1 Message Date
mrsu 1a65ae7eb0 changed sb-battery-new name 2024-06-16 20:08:26 +01:00
mrsu 08a8159195 moved separators to scripts 2024-06-16 14:56:09 +01:00
mrsu 04a2223f66 Merge branch 'semita' of git.sjplab.com:/sam/dwmblocks into semita 2024-06-13 17:30:08 +01:00
mrsu 5ec5bd7d84 merge master 2024-02-08 12:50:35 +00:00
torrinfail 58a426b68a
Merge pull request #74 from tinnamchoi/spelling
Got me.
2024-01-10 20:33:36 -07:00
tinnamchoi 406e4a4d12 delimeter -> delimiter 2023-08-02 20:31:25 +09:30
1 changed files with 8 additions and 7 deletions

View File

@ -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*/
{" [", "sb-network-status", 5, 12},
{" [", "sb-updates", 60, 11},
{" [ ", "sb-mem-pct", 5, 0},
{" [󰻠 ", "sb-cpu-pct", 5, 0},
{" [" , "sb-volume", 5, 10},
{" ", "date '+%Y-%m-%d %H:%M:%S'", 1, 0},
{"", "sb-network-status", 5, 12},
{"", "sb-updates", 60, 11},
{"", "sb-battery", 1, 0},
{"", "sb-mem-pct", 5, 0},
{"", "sb-cpu-pct", 5, 0},
{"", "sb-volume", 5, 10},
{"", "date '+%Y-%m-%d %H:%M:%S'", 1, 0},
};
//sets delimeter between status commands. NULL character ('\0') means no delimeter.
static char delim[] = "] ";
static char delim[] = "";
static unsigned int delimLen = 1;