zsh: prompt: only show percentage of the first battery available
This commit is contained in:
parent
7267ce56b7
commit
31e461fb38
1 changed files with 1 additions and 1 deletions
|
|
@ -67,7 +67,7 @@ zshrc_prompt_precmd() {
|
|||
# battery percentage, if acpi is available
|
||||
local battery_pct=
|
||||
if [[ -d /sys/class/power_supply/BAT*(#qN) ]] && type acpi &> /dev/null; then
|
||||
battery_pct="$(acpi -b | cut -d, -f2 | sed -e 's/[^0-9]//g')"
|
||||
battery_pct="$(acpi -b | cut -d, -f2 | sed -e 's/[^0-9]//g' | head -n1)"
|
||||
|
||||
# colorize battery percentage or display status
|
||||
if [[ $battery_pct -le 20 ]]; then
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue