diff options
Diffstat (limited to 'dwmblocks')
| -rw-r--r-- | dwmblocks/FUNDING.yml | 3 | ||||
| -rw-r--r-- | dwmblocks/config.h | 11 |
2 files changed, 8 insertions, 6 deletions
diff --git a/dwmblocks/FUNDING.yml b/dwmblocks/FUNDING.yml deleted file mode 100644 index f8e6076..0000000 --- a/dwmblocks/FUNDING.yml +++ /dev/null @@ -1,3 +0,0 @@ -github: lukesmithxyz -custom: ["https://lukesmith.xyz/donate", "https://paypal.me/lukemsmith", "https://lukesmith.xyz/crypto"] -patreon: lukesmith diff --git a/dwmblocks/config.h b/dwmblocks/config.h index 3db5249..2805cae 100644 --- a/dwmblocks/config.h +++ b/dwmblocks/config.h @@ -1,7 +1,8 @@ +// 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-music", 1, 11}, - // {"⌨", "sb-kbselect", 0, 30}, + /* {"⌨", "sb-kbselect", 0, 30}, */ {"", "cat /tmp/recordingicon 2>/dev/null", 0, 9}, {"", "sb-tasks", 10, 26}, {"", "sb-torrent", 20, 7}, @@ -30,6 +31,10 @@ static const Block blocks[] = { {"", "sb-help-icon", 0, 15}, }; -// Sets delimiter between status commands. NULL character ('\0') means no -// delimiter. +// Sets delimiter between status commands. NULL character ('\0') means no delimiter. 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: + +// autocmd BufWritePost ~/.local/src/dwmblocks/config.h !cd ~/.local/src/dwmblocks/; sudo make install && { killall -q dwmblocks;setsid dwmblocks & } |
