diff --git a/status.sh b/status.sh index 4d3aeb7..971180b 100755 --- a/status.sh +++ b/status.sh @@ -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".