blocks.def.h 478 B

123456789101112
  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. {"Mem:", "free -h | awk '/^Mem/ { print $3\"/\"$2 }' | sed s/i//g", 30, 0},
  5. {"", "date '+%b %d (%a) %I:%M%p'", 5, 0},
  6. };
  7. //sets delimeter between status commands. NULL character ('\0') means no delimeter.
  8. static char delim[] = " | ";
  9. static unsigned int delimLen = 5;