You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
907 B

  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. { "Docker: ", "status-docker", 60, 0 },
  5. { "Pkgs: ", "status-pkgs", 1800, 0 },
  6. { "Disk: ", "status-disk-usage", 30, 0 },
  7. { "Mem: ", "status-memory", 30, 0 },
  8. { "Net: ", "status-internet", 60, 0 },
  9. { "", "status-temperature", 30, 0 },
  10. { "", "status-battery", 60, 0 },
  11. { "", "status-datetime", 60, 0 },
  12. };
  13. //sets delimiter between status commands. NULL character ('\0') means no delimiter.
  14. static char delim[] = " | ";
  15. static unsigned int delimLen = 5;