added power status for single battery
This commit is contained in:
parent
acd725712b
commit
85a0e2cc80
1 changed files with 4 additions and 3 deletions
7
neofetch
7
neofetch
|
@ -1551,7 +1551,8 @@ getbattery () {
|
|||
|
||||
# Create an array of battery usage from each battery.
|
||||
batteries=($(cat /sys/class/power_supply/BAT${battery_num}/capacity))
|
||||
|
||||
# Get the power status
|
||||
power_status=($(cat /sys/class/power_supply/BAT${battery_num}/status))
|
||||
# Get the subtitle and reassign it so it doesn't change.
|
||||
title="$subtitle"
|
||||
|
||||
|
@ -1572,14 +1573,14 @@ getbattery () {
|
|||
"bar") prin "${title}${index}: $(bar ${bat/'%'} 100)" ;;
|
||||
"infobar") prin "${title}${index}: ${bat}% $(bar "${bat/'%'}" 100)" ;;
|
||||
"barinfo") prin "${title}${index}: $(bar "${bat/'%'}" 100) ${bat}%" ;;
|
||||
*) prin "${title}${index}: ${bat}%" ;;
|
||||
*) prin "${title}${index}: ${bat}% " ;;
|
||||
esac
|
||||
index=$((index + 1))
|
||||
done
|
||||
return
|
||||
fi
|
||||
|
||||
battery="${batteries[0]}%"
|
||||
battery="${batteries[0]}% ${power_status}"
|
||||
fi
|
||||
else
|
||||
battery="None"
|
||||
|
|
Loading…
Reference in a new issue