(Scripts/status)~few minor edits for functionality and cleanliness

Status scripts needed some updating for dwmblocks, so did it.
This commit is contained in:
2021-07-10 17:11:33 +01:00
parent be603ca4a2
commit c616335809
4 changed files with 5 additions and 14 deletions

View File

@@ -1,6 +1,7 @@
#!/usr/bin/env bash
capacity=$(cat /sys/class/power_supply/BAT0/capacity) || break
status=$(cat /sys/class/power_supply/BAT0/status)
time_left=$(upower -i /org/freedesktop/UPower/devices/battery_BAT0 | grep "time to empty" | sed 's/.*://' | xargs echo $1)
if [[ $status == "Charging" ]]
then
@@ -22,4 +23,4 @@ else
status=""
fi
fi
echo "$status $capacity%"
echo "$status $capacity% $time_left"

View File

@@ -3,5 +3,4 @@
line=$(free -m | sed -n 2p);
used=$(echo $line | awk '{print $3}');
available=$(echo $line | awk '{print $2}');
echo "100 * $used / $available" | bc -l | xargs printf "%.2f" $1
echo "%"
echo "" $(printf "%dMB" $used) $(echo "100 * $used / $available" | bc -l | xargs printf "%.2f" $1)

View File

@@ -1,4 +1,4 @@
#!/usr/bin/env bash
title=$(playerctl --player=spotify metadata title)
echo "${title::40}"
echo "${title::40}"

View File

@@ -1,11 +1,2 @@
#!/usr/bin/env bash
sinks="$(pactl list sinks)"
vol="$(echo "$sinks" | grep '[0-9]\+%' | sed "s,.* \([0-9]\+\)%.*,\1,;1q")"
mute="$(echo "$sinks" | grep "Mute: " | sed "s/.*Mute: //g")"
case "$mute" in
"no")
printf "";;
"yes")
printf "";;
esac
echo " $vol%"
echo "" $(pamixer --get-volume-human)