mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-12 08:50:08 +00:00
b8b8762915
On a system with multiple batteries (like thinkpads) report percentage and time remaining only for the active battery (the one being discharged). Ideally we should report all batteries, but acpi only shows time remaining for the active battery. Also callers of these functions expect a single return value. This is still better than reporting 596% remaining (like it did on my laptop). For the reference, the output of acpi command with multiple batteries looks like this: Battery 0: Unknown, 5% Battery 1: Discharging, 86%, 03:14:04 remaining
210 lines
6.1 KiB
Bash
210 lines
6.1 KiB
Bash
###########################################
|
|
# Battery plugin for oh-my-zsh #
|
|
# Original Author: Peter hoeg (peterhoeg) #
|
|
# Email: peter@speartail.com #
|
|
###########################################
|
|
# Author: Sean Jones (neuralsandwich) #
|
|
# Email: neuralsandwich@gmail.com #
|
|
# Modified to add support for Apple Mac #
|
|
###########################################
|
|
# Author: J (927589452) #
|
|
# Modified to add support for FreeBSD #
|
|
###########################################
|
|
|
|
if [[ "$OSTYPE" = darwin* ]]; then
|
|
|
|
function battery_is_charging() {
|
|
ioreg -rc AppleSmartBattery | command grep -q '^.*"ExternalConnected"\ =\ Yes'
|
|
}
|
|
|
|
function battery_pct() {
|
|
local smart_battery_status="$(ioreg -rc AppleSmartBattery)"
|
|
local -F maxcapacity=$(command grep '^.*"MaxCapacity"\ =\ ' <<< $smart_battery_status | sed -e 's/^.*"MaxCapacity"\ =\ //')
|
|
local -F currentcapacity=$(command grep '^.*"CurrentCapacity"\ =\ ' <<< $smart_battery_status | sed -e 's/^.*CurrentCapacity"\ =\ //')
|
|
echo $(( (currentcapacity/maxcapacity) * 100 ))
|
|
}
|
|
|
|
function battery_pct_remaining() {
|
|
if battery_is_charging; then
|
|
echo "External Power"
|
|
else
|
|
battery_pct
|
|
fi
|
|
}
|
|
|
|
function battery_time_remaining() {
|
|
local smart_battery_status="$(ioreg -rc "AppleSmartBattery")"
|
|
if [[ $(echo $smart_battery_status | command grep -c '^.*"ExternalConnected"\ =\ No') -eq 1 ]]; then
|
|
timeremaining=$(echo $smart_battery_status | command grep '^.*"AvgTimeToEmpty"\ =\ ' | sed -e 's/^.*"AvgTimeToEmpty"\ =\ //')
|
|
if [ $timeremaining -gt 720 ]; then
|
|
echo "::"
|
|
else
|
|
echo "~$((timeremaining / 60)):$((timeremaining % 60))"
|
|
fi
|
|
else
|
|
echo "∞"
|
|
fi
|
|
}
|
|
|
|
function battery_pct_prompt () {
|
|
if ioreg -rc AppleSmartBattery | command grep -q '^.*"ExternalConnected"\ =\ No'; then
|
|
b=$(battery_pct_remaining)
|
|
if [[ $b -gt 50 ]]; then
|
|
color='green'
|
|
elif [[ $b -gt 20 ]]; then
|
|
color='yellow'
|
|
else
|
|
color='red'
|
|
fi
|
|
echo "%{$fg[$color]%}[$(battery_pct_remaining)%%]%{$reset_color%}"
|
|
else
|
|
echo "∞"
|
|
fi
|
|
}
|
|
|
|
elif [[ "$OSTYPE" = freebsd* ]]; then
|
|
|
|
function battery_is_charging() {
|
|
[[ $(sysctl -n hw.acpi.battery.state) -eq 2 ]]
|
|
}
|
|
|
|
function battery_pct() {
|
|
if (( $+commands[sysctl] )); then
|
|
sysctl -n hw.acpi.battery.life
|
|
fi
|
|
}
|
|
|
|
function battery_pct_remaining() {
|
|
if ! battery_is_charging; then
|
|
battery_pct
|
|
else
|
|
echo "External Power"
|
|
fi
|
|
}
|
|
|
|
function battery_time_remaining() {
|
|
local remaining_time
|
|
remaining_time=$(sysctl -n hw.acpi.battery.time)
|
|
if [[ $remaining_time -ge 0 ]]; then
|
|
((hour = $remaining_time / 60 ))
|
|
((minute = $remaining_time % 60 ))
|
|
printf %02d:%02d $hour $minute
|
|
fi
|
|
}
|
|
|
|
function battery_pct_prompt() {
|
|
local b color
|
|
b=$(battery_pct_remaining)
|
|
if battery_is_charging; then
|
|
echo "∞"
|
|
else
|
|
if [[ $b -gt 50 ]]; then
|
|
color='green'
|
|
elif [[ $b -gt 20 ]]; then
|
|
color='yellow'
|
|
else
|
|
color='red'
|
|
fi
|
|
echo "%{$fg[$color]%}$(battery_pct_remaining)%%%{$reset_color%}"
|
|
fi
|
|
}
|
|
|
|
elif [[ "$OSTYPE" = linux* ]]; then
|
|
|
|
function battery_is_charging() {
|
|
! acpi 2>/dev/null | command grep -q '^Battery.*Discharging'
|
|
}
|
|
|
|
function battery_pct() {
|
|
if (( $+commands[acpi] )); then
|
|
acpi 2>/dev/null | command grep -E '^Battery.*(Disc|C)harging' | cut -f2 -d ',' | tr -cd '[:digit:]'
|
|
fi
|
|
}
|
|
|
|
function battery_pct_remaining() {
|
|
if ! battery_is_charging; then
|
|
battery_pct
|
|
else
|
|
echo "External Power"
|
|
fi
|
|
}
|
|
|
|
function battery_time_remaining() {
|
|
if ! battery_is_charging; then
|
|
acpi 2>/dev/null | cut -f3 -d ','
|
|
fi
|
|
}
|
|
|
|
function battery_pct_prompt() {
|
|
local b color
|
|
b=$(battery_pct_remaining)
|
|
if battery_is_charging; then
|
|
echo "∞"
|
|
else
|
|
if [[ $b -gt 50 ]]; then
|
|
color='green'
|
|
elif [[ $b -gt 20 ]]; then
|
|
color='yellow'
|
|
else
|
|
color='red'
|
|
fi
|
|
echo "%{$fg[$color]%}$(battery_pct_remaining)%%%{$reset_color%}"
|
|
fi
|
|
}
|
|
|
|
else
|
|
# Empty functions so we don't cause errors in prompts
|
|
function battery_is_charging { false }
|
|
function battery_pct \
|
|
battery_pct_remaining \
|
|
battery_time_remaining \
|
|
battery_pct_prompt { }
|
|
fi
|
|
|
|
function battery_level_gauge() {
|
|
local gauge_slots=${BATTERY_GAUGE_SLOTS:-10}
|
|
local green_threshold=${BATTERY_GREEN_THRESHOLD:-$(( gauge_slots * 0.6 ))}
|
|
local yellow_threshold=${BATTERY_YELLOW_THRESHOLD:-$(( gauge_slots * 0.4 ))}
|
|
local color_green=${BATTERY_COLOR_GREEN:-%F{green}}
|
|
local color_yellow=${BATTERY_COLOR_YELLOW:-%F{yellow}}
|
|
local color_red=${BATTERY_COLOR_RED:-%F{red}}
|
|
local color_reset=${BATTERY_COLOR_RESET:-%{%f%k%b%}}
|
|
local battery_prefix=${BATTERY_GAUGE_PREFIX:-'['}
|
|
local battery_suffix=${BATTERY_GAUGE_SUFFIX:-']'}
|
|
local filled_symbol=${BATTERY_GAUGE_FILLED_SYMBOL:-'▶'}
|
|
local empty_symbol=${BATTERY_GAUGE_EMPTY_SYMBOL:-'▷'}
|
|
local charging_color=${BATTERY_CHARGING_COLOR:-$color_yellow}
|
|
local charging_symbol=${BATTERY_CHARGING_SYMBOL:-'⚡'}
|
|
|
|
local battery_remaining_percentage=$(battery_pct)
|
|
local filled empty gauge_color
|
|
|
|
if [[ $battery_remaining_percentage =~ [0-9]+ ]]; then
|
|
filled=$(( ($battery_remaining_percentage * $gauge_slots) / 100 ))
|
|
empty=$(( $gauge_slots - $filled ))
|
|
|
|
if [[ $filled -gt $green_threshold ]]; then
|
|
gauge_color=$color_green
|
|
elif [[ $filled -gt $yellow_threshold ]]; then
|
|
gauge_color=$color_yellow
|
|
else
|
|
gauge_color=$color_red
|
|
fi
|
|
else
|
|
filled=$gauge_slots
|
|
empty=0
|
|
filled_symbol=${BATTERY_UNKNOWN_SYMBOL:-'.'}
|
|
fi
|
|
|
|
local charging=' '
|
|
battery_is_charging && charging=$charging_symbol
|
|
|
|
# Charging status and prefix
|
|
printf ${charging_color//\%/\%\%}$charging${color_reset//\%/\%\%}${battery_prefix//\%/\%\%}${gauge_color//\%/\%\%}
|
|
# Filled slots
|
|
[[ $filled -gt 0 ]] && printf ${filled_symbol//\%/\%\%}'%.0s' {1..$filled}
|
|
# Empty slots
|
|
[[ $filled -lt $gauge_slots ]] && printf ${empty_symbol//\%/\%\%}'%.0s' {1..$empty}
|
|
# Suffix
|
|
printf ${color_reset//\%/\%\%}${battery_suffix//\%/\%\%}${color_reset//\%/\%\%}
|
|
}
|