dwmblocks/blocks.def.h

20 lines
1.3 KiB
C

//Modify this file to change what commands output to your statusbar, and recompile using the make command.
static const Block blocks[] = {
/*Icon*/ /*Command*/ /*Update Interval*/ /*Update Signal*/
{"", "echo \"$( < /proc/loadavg cut -f1,2,3 -d ' ')\" \
\"($(mpstat --dec=0 5 1 | tr -s ' ' | grep -i '\\: all' \
| awk -F ' ' '{ print $3 + $4 + $5 }')%, $(sensors \
| grep 'Tdie:' | tr -s ' ' | cut -f2 -d ' ' \
| cut -c 2-))\" ", 5, 0},
{"", "free -h | awk '/^Minne/ { print $3\"/\"$2 }' | sed s/i//g", 30, 0},
{"", "echo \"$(cat /sys/class/power_supply/BAT0/capacity)%\" \
\"[$(sed \"s/Unknown/?/;s/Charging/+/;s/Discharging/-/;\"\
/sys/class/power_supply/BAT0/status)]\"", 30, 0},
{"", "xkblayout-state print \"%s\"", 0, 1},
{"", "date '+%b %d (%a) %H:%M'", 5, 0},
};
//sets delimeter between status commands. NULL character ('\0') means no delimeter.
static char delim[] = " | ";
static unsigned int delimLen = 5;