summaryrefslogtreecommitdiffstats
path: root/.local/bin/my-bar
diff options
context:
space:
mode:
Diffstat (limited to '.local/bin/my-bar')
-rwxr-xr-x.local/bin/my-bar20
1 files changed, 20 insertions, 0 deletions
diff --git a/.local/bin/my-bar b/.local/bin/my-bar
new file mode 100755
index 0000000..18f8a92
--- /dev/null
+++ b/.local/bin/my-bar
@@ -0,0 +1,20 @@
+#!/bin/sh
+while true
+do
+ b0="/sys/class/power_supply/BAT0"
+ bat="$(cat $b0/capacity)"
+ # batl="$(cat $b0/capacity_level)"
+ pm="pamixer --get-volume"
+ pmm="pamixer --get-mute"
+ vol="$($pm)"
+ [ "$($pmm)" = "true" ] && volm='-' || volm='+'
+ volmic="$($pm --default-source)"
+ [ "$($pmm --default-source)" = "true" ] && volmicm='-' || volmicm='+'
+ load="$(cat /proc/loadavg | cut -d' ' -f1)"
+ time="$(date +'%a, %-d %b %Y %R %z')"
+ printf "%s%% | %s%s,%s%s | %s | %s\n" \
+ "$bat" \
+ "$vol" "$volm" "$volmic" "$volmicm" \
+ "$load" "$time"
+ sleep 5
+done