Remove double percentage sign…

This commit is contained in:
2024-11-07 14:30:20 +01:00
parent f8471d3975
commit f239dd824f

View File

@ -19,7 +19,7 @@ battery_info=$(upower --show-info $(upower --enumerate |\
grep 'BAT') |\
egrep "state|percentage" |\
awk -v ORS=" " '{print $2}' |\
awk '{printf "%s%% (%s)", $2, $1}')
awk '{printf "%s (%s)", $2, $1}')
# "amixer -M" gets the mapped volume for evaluating the percentage which
# is more natural to the human ear according to "man amixer".