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.

20 lines
702 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. {"", "cat ~/.pacupdate | sed /📦0/d", 0, 9},
  5. {"🧠", "free -h | awk '/^Mem/ { print $3\"/\"$2 }' | sed s/i//g", 30, 0},
  6. {"", "~/bin/statusbar/volume", 0, 10},
  7. {"", "xbacklight | sed 's/\\..*//'", 0, 11},
  8. {"", "~/bin/statusbar/battery", 5, 0},
  9. {"🌡", "sensors | awk '/^temp1:/{print $2}'", 5, 0},
  10. {"", "~/bin/statusbar/clock", 5, 0},
  11. };
  12. //sets delimeter between status commands. NULL character ('\0') means no delimeter.
  13. static char delim = '|';