dwmblocks

My build of dwmblocks.
git clone git://git.alex.balgavy.eu/dwmblocks.git
Log | Files | Refs | README | LICENSE

blocks.h (932B)


      1 //Modify this file to change what commands output to your statusbar, and recompile using the make command.
      2 static const Block blocks[] = {
      3   /*Icon*/ /*Command*/ /*Update Interval*/ /*Update Signal*/
      4   {"", "dwmblock-tmuxlist", 10, 17},
      5   {"", "dwmblock-taskspooler", 10, 16},
      6   {"", "dwmblock-emacs-org-clock", 10, 7},
      7   {"", "dwmblock-battery", 5, 1},
      8   // {"", "dwmblock-doppler", 0, 10},
      9   {"", "dwmblock-iss", 0, 14},
     10   {"", "dwmblock-cpu", 10, 2 },
     11   {"", "dwmblock-brightness", 0, 3},
     12   {"", "dwmblock-internet", 10, 5},
     13   {"", "dwmblock-nettraf", 10, 12},
     14   {"", "dwmblock-bluetooth", 10, 8},
     15   {"", "dwmblock-volume", 10, 6},
     16   // {"", "dwmblock-kbselect", 0, 11},
     17   {"", "dwmblock-touchpad", 0, 15},
     18   {"", "dwmblock-startbutton", 60, 13},
     19   {"", "dwmblock-date", 1, 4},
     20 };
     21 
     22 //sets delimeter between status commands. NULL character ('\0') means no delimeter.
     23 static char delim[] = " | ";
     24 static unsigned int delimLen = 5;