From 9adc4dc1e7a2230d24ef1dada9b888b16aec374c Mon Sep 17 00:00:00 2001 From: mackarelfish Date: Sat, 30 May 2020 12:36:18 +0700 Subject: Added support for multiple char delimiter --- config.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'config.h') diff --git a/config.h b/config.h index 5c71ce5..31011ad 100644 --- a/config.h +++ b/config.h @@ -2,7 +2,7 @@ static const Block blocks[] = { /*Icon*/ /*Command*/ /*Update Interval*/ /*Update Signal*/ {"", "cat /tmp/recordingicon 2>/dev/null", 0, 9}, - /* {"", "music", 0, 11}, */ + {"", "music", 0, 11}, {"", "pacpackages", 0, 8}, {"", "news", 0, 6}, /* {"", "crypto", 0, 13}, */ @@ -24,7 +24,7 @@ static const Block blocks[] = { }; //sets delimeter between status commands. NULL character ('\0') means no delimeter. -static char delim = ' '; +static char *delim = " "; // Have dwmblocks automatically recompile and run when you edit this file in // vim with the following line in your vimrc/init.vim: -- cgit v1.2.3 From e2ca6028d61859b66816fadeb6103fee1fa58314 Mon Sep 17 00:00:00 2001 From: Zaky Bilfagih <55378008+mackarelfish@users.noreply.github.com> Date: Sat, 30 May 2020 12:44:06 +0700 Subject: Commented out music from default config.h --- config.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'config.h') diff --git a/config.h b/config.h index 31011ad..6106bba 100644 --- a/config.h +++ b/config.h @@ -2,7 +2,7 @@ static const Block blocks[] = { /*Icon*/ /*Command*/ /*Update Interval*/ /*Update Signal*/ {"", "cat /tmp/recordingicon 2>/dev/null", 0, 9}, - {"", "music", 0, 11}, + /* {"", "music", 0, 11},*/ {"", "pacpackages", 0, 8}, {"", "news", 0, 6}, /* {"", "crypto", 0, 13}, */ -- cgit v1.2.3