From 5f018a248e5b052628ea14296906b901425fc742 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=A1clav=20Uruba?= Date: Sun, 17 Jan 2021 15:00:41 +0100 Subject: [PATCH] remove labels, tweak keyboard layout switching --- blocks.def.h | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/blocks.def.h b/blocks.def.h index 24bd90f..19921ef 100644 --- a/blocks.def.h +++ b/blocks.def.h @@ -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.