diff options
author | Luke Smith <luke@lukesmith.xyz> | 2020-05-30 08:38:33 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-30 08:38:33 -0400 |
commit | 9a7ecafdcccfb5ab874a1ef9389fed600cac8050 (patch) | |
tree | 75c37a268806fc871f3281f1bdc9d4293d592d03 /config.h | |
parent | 6d75ac1b00482e842f3e600cddde3b31a1c35ede (diff) | |
parent | e2ca6028d61859b66816fadeb6103fee1fa58314 (diff) | |
download | dwmblocks-9a7ecafdcccfb5ab874a1ef9389fed600cac8050.tar.gz dwmblocks-9a7ecafdcccfb5ab874a1ef9389fed600cac8050.tar.bz2 dwmblocks-9a7ecafdcccfb5ab874a1ef9389fed600cac8050.zip |
Merge pull request #28 from mackarelfish/master
Fixed weird blocks behaviour with moving text (music, nettraf), Added support for multiple char delimiter
Diffstat (limited to 'config.h')
-rw-r--r-- | config.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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: |