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, 0 insertions, 20 deletions
diff --git a/.local/bin/my-bar b/.local/bin/my-bar
deleted file mode 100755
index 8a37d2f..0000000
--- a/.local/bin/my-bar
+++ /dev/null
@@ -1,20 +0,0 @@
-#!/bin/sh
-while true
-do
- b0="/sys/class/power_supply/BAT0"
- bat="$(cat $b0/capacity)"
- # batl="$(cat $b0/capacity_level)"
- sinkv="$(pactl get-sink-volume @DEFAULT_SINK@ | grep -Po '\d+(?=%)' | head -n1)"
- sinkm="$(pactl get-sink-mute @DEFAULT_SINK@ | grep -o 'no\|yes')"
- srcv="$(pactl get-source-volume @DEFAULT_SOURCE@ | grep -Po '\d+(?=%)' | head -n1)"
- srcm="$(pactl get-source-mute @DEFAULT_SOURCE@ | grep -o 'no\|yes')"
- [ "$sinkm" = "no" ] && sinkm='+' || sinkm='-'
- [ "$srcm" = "no" ] && srcm='+' || srcm='-'
- 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" \
- "$sinkv" "$sinkm" "$srcv" "$srcm" \
- "$load" "$time"
- sleep 5
-done