summaryrefslogtreecommitdiffstats
path: root/.local/bin/b-bar
diff options
context:
space:
mode:
Diffstat (limited to '.local/bin/b-bar')
-rwxr-xr-x.local/bin/b-bar13
1 files changed, 13 insertions, 0 deletions
diff --git a/.local/bin/b-bar b/.local/bin/b-bar
new file mode 100755
index 0000000..e326673
--- /dev/null
+++ b/.local/bin/b-bar
@@ -0,0 +1,13 @@
+#!/bin/sh
+while true
+do
+ b0="/sys/class/power_supply/BAT0"
+ bat="$(cat $b0/capacity)"
+ # batl="$(cat $b0/capacity_level)"
+ vols="$(b-pavols)"
+ load="$(cat /proc/loadavg | cut -d' ' -f1)"
+ time="$(date +'%a, %d %b %Y %R %z')"
+ printf "%s%% | %s | %s | %s\n" \
+ "$bat" "$vols" "$load" "$time"
+ sleep 5
+done