mirror of
https://github.com/dylanaraps/neofetch.git
synced 2025-12-22 19:49:54 +00:00
Cleanup the battery function
This commit is contained in:
12
neofetch
12
neofetch
@@ -1408,18 +1408,16 @@ getbattery () {
|
||||
battery="${battery}%"
|
||||
|
||||
else
|
||||
# If there's only a single battery and it's battery 0,
|
||||
# don't number the subtitle.
|
||||
if [ "${#batteries[@]}" == 1 ]; then
|
||||
battery="${batteries[0]}%"
|
||||
return
|
||||
fi
|
||||
|
||||
if [ "${#batteries[@]}" -gt 1 ]; then
|
||||
# Print each battery on a separate line.
|
||||
for bat in "${batteries[@]}"; do
|
||||
prin "${title}${index}: ${bat}%"
|
||||
index=$((index + 1))
|
||||
done
|
||||
return
|
||||
fi
|
||||
|
||||
battery="${batteries[0]}%"
|
||||
fi
|
||||
else
|
||||
battery="None"
|
||||
|
||||
Reference in New Issue
Block a user