2019-03-24 17:51:45 -06:00
|
|
|
//Modify this file to change what commands output to your statusbar, and recompile using the make command.
|
2019-03-24 16:31:05 -06:00
|
|
|
static const Block blocks[] = {
|
2020-04-22 20:09:51 -04:00
|
|
|
/*Icon*/ /*Command*/ /*Update Interval*/ /*Update Signal*/
|
2020-10-11 15:18:55 -04:00
|
|
|
/* {"⌨", "kbselect", 0, 30}, */
|
2020-04-22 20:09:51 -04:00
|
|
|
{"", "cat /tmp/recordingicon 2>/dev/null", 0, 9},
|
2020-10-11 15:18:55 -04:00
|
|
|
/* {"", "music", 0, 11}, */
|
2020-04-22 20:09:51 -04:00
|
|
|
{"", "pacpackages", 0, 8},
|
2020-05-04 15:26:24 -04:00
|
|
|
{"", "news", 0, 6},
|
2020-04-22 20:09:51 -04:00
|
|
|
/* {"", "crypto", 0, 13}, */
|
2020-10-11 15:18:55 -04:00
|
|
|
/* {"", "price lbc \"LBRY Token\" 📚", 9000, 22}, */
|
|
|
|
/* {"", "price bat \"Basic Attention Token\" 🦁", 9000, 20}, */
|
|
|
|
/* {"", "price link \"Chainlink\" 🔗", 300, 25}, */
|
|
|
|
/* {"", "price xmr \"Monero\" 🔒", 9000, 24}, */
|
|
|
|
/* {"", "price eth Ethereum 🍸", 9000, 23}, */
|
|
|
|
/* {"", "price btc Bitcoin 💰", 9000, 21}, */
|
|
|
|
/* {"", "torrent", 20, 7}, */
|
2020-04-22 20:09:51 -04:00
|
|
|
/* {"", "memory", 10, 14}, */
|
2020-05-25 20:34:43 -04:00
|
|
|
/* {"", "cpu", 10, 18}, */
|
2020-05-07 20:35:49 -04:00
|
|
|
/* {"", "moonphase", 18000, 17}, */
|
2020-10-11 15:18:55 -04:00
|
|
|
{"", "forecast", 18000, 5},
|
2020-04-22 20:09:51 -04:00
|
|
|
{"", "mailbox", 180, 12},
|
2020-10-11 15:18:55 -04:00
|
|
|
{"", "nettraf", 1, 16},
|
2020-05-04 15:26:24 -04:00
|
|
|
{"", "volume", 0, 10},
|
2020-05-07 20:35:49 -04:00
|
|
|
{"", "battery", 5, 3},
|
2020-04-22 20:09:51 -04:00
|
|
|
{"", "clock", 60, 1},
|
|
|
|
{"", "internet", 5, 4},
|
2020-04-23 15:11:50 -04:00
|
|
|
{"", "help-icon", 0, 15},
|
2019-09-21 15:34:35 -04:00
|
|
|
};
|
2019-03-29 21:10:46 -06:00
|
|
|
|
2020-09-09 20:31:33 +02:00
|
|
|
//Sets delimiter between status commands. NULL character ('\0') means no delimiter.
|
2020-05-30 12:36:18 +07:00
|
|
|
static char *delim = " ";
|
2020-04-15 14:42:20 -04:00
|
|
|
|
|
|
|
// Have dwmblocks automatically recompile and run when you edit this file in
|
|
|
|
// vim with the following line in your vimrc/init.vim:
|
|
|
|
|
2020-04-22 19:44:42 -04:00
|
|
|
// autocmd BufWritePost ~/.local/src/dwmblocks/config.h !cd ~/.local/src/dwmblocks/; sudo make install && { killall -q dwmblocks;setsid dwmblocks & }
|