dwmblocks

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

blocks.h (855B)


      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-emacs-org-clock", 10, 7},
      5   {"", "dwmblock-battery", 5, 1},
      6   // {"", "dwmblock-doppler", 0, 10},
      7   {"", "dwmblock-iss", 0, 14},
      8   {"", "dwmblock-cpu", 10, 2 },
      9   {"", "dwmblock-brightness", 0, 3},
     10   {"", "dwmblock-internet", 10, 5},
     11   {"", "dwmblock-nettraf", 10, 12},
     12   {"", "dwmblock-bluetooth", 10, 8},
     13   {"", "dwmblock-volume", 10, 6},
     14   // {"", "dwmblock-kbselect", 0, 11},
     15   {"", "dwmblock-touchpad", 0, 15},
     16   {"", "dwmblock-startbutton", 60, 13},
     17   {"", "dwmblock-date", 1, 4},
     18 };
     19 
     20 //sets delimeter between status commands. NULL character ('\0') means no delimeter.
     21 static char delim[] = " | ";
     22 static unsigned int delimLen = 5;