remove labels, tweak keyboard layout switching

This commit is contained in:
Václav Uruba 2021-01-17 15:00:41 +01:00
parent b81f53be7b
commit 5f018a248e
Signed by: uruba
GPG Key ID: 0059B34D61727BB0

View File

@ -1,17 +1,17 @@
//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*/
{"CPU ", "echo \"$(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},
{"Mem ", "free -h | awk '/^Minne/ { print $3\"/\"$2 }' | sed s/i//g", 30, 0},
{"Bat ", "echo \"$(cat /sys/class/power_supply/BAT0/capacity)%\" \
{"", "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},
{"xbps ", "xbps-install -un | grep update | wc -l", 300, 0},
{"", "xkblayout-state print \"%s\"", 5, 0},
{"", "date '+%b %d (%a) %H:%M'", 5, 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.