diff options
author | Joe <bousset.rudy@gmail.com> | 2022-08-16 12:29:03 +0200 |
---|---|---|
committer | Joe <bousset.rudy@gmail.com> | 2022-08-16 12:29:03 +0200 |
commit | b2c6ee2efe63c608918727206b46484699dfde6e (patch) | |
tree | 121b718aabc13d5816b77041c312d1794f5acbe1 /config.h | |
parent | tmp (diff) | |
download | dwmblocks-b2c6ee2efe63c608918727206b46484699dfde6e.tar.gz dwmblocks-b2c6ee2efe63c608918727206b46484699dfde6e.tar.bz2 dwmblocks-b2c6ee2efe63c608918727206b46484699dfde6e.tar.xz dwmblocks-b2c6ee2efe63c608918727206b46484699dfde6e.tar.zst dwmblocks-b2c6ee2efe63c608918727206b46484699dfde6e.zip |
update
Diffstat (limited to 'config.h')
-rw-r--r-- | config.h | 13 |
1 files changed, 7 insertions, 6 deletions
@@ -1,11 +1,12 @@ //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*/ + /*Icon Command Update interval Update signal*/ + { "", "sb-mailbox", 180, 12 }, + { "", "sb-mpd", 5, 11 }, + { "", "sb-clock", 1, 1 }, + /* { "", "sb-music", 0, 11 }, */ /* {"⌨", "sb-kbselect", 0, 30}, */ /* {"", "cat /tmp/recordingicon 2>/dev/null", 0, 9}, */ - {"", "sb-tasks", 10, 26}, - {"", "sb-music", 0, 11}, - { " ", "sb-clock", 60, 1 }, /* {"", "sb-pacpackages", 0, 8}, */ /* {"", "sb-news", 0, 6}, */ /* {"", "sb-price lbc \"LBRY Token\" 📚", 9000, 22}, */ @@ -19,7 +20,6 @@ static const Block blocks[] = { /* {"", "sb-cpu", 10, 18}, */ /* {"", "sb-moonphase", 18000, 17}, */ /* {"", "sb-forecast", 18000, 5}, */ - /* {"", "sb-mailbox", 180, 12}, */ /* {"", "sb-nettraf", 1, 16}, */ /* {"", "sb-volume", 0, 10}, */ /* {"", "sb-battery", 5, 3}, */ @@ -28,7 +28,8 @@ static const Block blocks[] = { }; //Sets delimiter between status commands. NULL character ('\0') means no delimiter. -static char *delim = " | "; +static char *predelim = "["; +static char *postdelim = "]"; // Have dwmblocks automatically recompile and run when you edit this file in // vim with the following line in your vimrc/init.vim: |