2019-01-12 15:47:23 +00:00
|
|
|
###########################################
|
|
|
|
# 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 #
|
|
|
|
###########################################
|
2019-10-24 19:09:05 +00:00
|
|
|
# Author: J (927589452) #
|
|
|
|
# Modified to add support for FreeBSD #
|
|
|
|
###########################################
|
2019-01-12 15:47:23 +00:00
|
|
|
|
2020-06-11 14:41:32 +00:00
|
|
|
if [[ "$OSTYPE" = darwin* ]]; then
|
2019-01-12 15:47:23 +00:00
|
|
|
|
2020-06-11 14:41:32 +00:00
|
|
|
function battery_is_charging() {
|
|
|
|
ioreg -rc AppleSmartBattery | command grep -q '^.*"ExternalConnected"\ =\ Yes'
|
2019-01-12 15:47:23 +00:00
|
|
|
}
|
|
|
|
|
2020-06-11 14:41:32 +00:00
|
|
|
function battery_pct() {
|
|
|
|
local battery_status="$(ioreg -rc AppleSmartBattery)"
|
|
|
|
local -i capacity=$(sed -n -e '/MaxCapacity/s/^.*"MaxCapacity"\ =\ //p' <<< $battery_status)
|
|
|
|
local -i current=$(sed -n -e '/CurrentCapacity/s/^.*"CurrentCapacity"\ =\ //p' <<< $battery_status)
|
|
|
|
echo $(( current * 100 / capacity ))
|
2019-01-12 15:47:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function battery_pct_remaining() {
|
2020-06-11 14:41:32 +00:00
|
|
|
if battery_is_charging; then
|
2019-01-12 15:47:23 +00:00
|
|
|
echo "External Power"
|
|
|
|
else
|
|
|
|
battery_pct
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
function battery_time_remaining() {
|
|
|
|
local smart_battery_status="$(ioreg -rc "AppleSmartBattery")"
|
2020-06-11 14:41:32 +00:00
|
|
|
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
|
2019-01-12 15:47:23 +00:00
|
|
|
echo "::"
|
|
|
|
else
|
|
|
|
echo "~$((timeremaining / 60)):$((timeremaining % 60))"
|
|
|
|
fi
|
|
|
|
else
|
|
|
|
echo "∞"
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
function battery_pct_prompt () {
|
2020-06-11 14:41:32 +00:00
|
|
|
local battery_pct color
|
|
|
|
if ioreg -rc AppleSmartBattery | command grep -q '^.*"ExternalConnected"\ =\ No'; then
|
|
|
|
battery_pct=$(battery_pct_remaining)
|
|
|
|
if [[ $battery_pct -gt 50 ]]; then
|
2019-01-12 15:47:23 +00:00
|
|
|
color='green'
|
2020-06-11 14:41:32 +00:00
|
|
|
elif [[ $battery_pct -gt 20 ]]; then
|
2019-01-12 15:47:23 +00:00
|
|
|
color='yellow'
|
|
|
|
else
|
|
|
|
color='red'
|
|
|
|
fi
|
2020-06-11 14:41:32 +00:00
|
|
|
echo "%{$fg[$color]%}[${battery_pct}%%]%{$reset_color%}"
|
2019-01-12 15:47:23 +00:00
|
|
|
else
|
|
|
|
echo "∞"
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2020-06-11 14:41:32 +00:00
|
|
|
elif [[ "$OSTYPE" = freebsd* ]]; then
|
2019-10-24 19:09:05 +00:00
|
|
|
|
|
|
|
function battery_is_charging() {
|
|
|
|
[[ $(sysctl -n hw.acpi.battery.state) -eq 2 ]]
|
|
|
|
}
|
|
|
|
|
|
|
|
function battery_pct() {
|
2020-06-11 14:41:32 +00:00
|
|
|
if (( $+commands[sysctl] )); then
|
|
|
|
sysctl -n hw.acpi.battery.life
|
2019-10-24 19:09:05 +00:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
function battery_pct_remaining() {
|
2020-06-11 14:41:32 +00:00
|
|
|
if ! battery_is_charging; then
|
2019-10-24 19:09:05 +00:00
|
|
|
battery_pct
|
|
|
|
else
|
|
|
|
echo "External Power"
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
function battery_time_remaining() {
|
2020-06-11 14:41:32 +00:00
|
|
|
local remaining_time
|
2019-10-24 19:09:05 +00:00
|
|
|
remaining_time=$(sysctl -n hw.acpi.battery.time)
|
2020-06-11 14:41:32 +00:00
|
|
|
if [[ $remaining_time -ge 0 ]]; then
|
|
|
|
((hour = $remaining_time / 60 ))
|
|
|
|
((minute = $remaining_time % 60 ))
|
|
|
|
printf %02d:%02d $hour $minute
|
2019-10-24 19:09:05 +00:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
function battery_pct_prompt() {
|
2020-06-11 14:41:32 +00:00
|
|
|
local battery_pct color
|
|
|
|
battery_pct=$(battery_pct_remaining)
|
|
|
|
if battery_is_charging; then
|
|
|
|
echo "∞"
|
|
|
|
else
|
|
|
|
if [[ $battery_pct -gt 50 ]]; then
|
2019-10-24 19:09:05 +00:00
|
|
|
color='green'
|
2020-06-11 14:41:32 +00:00
|
|
|
elif [[ $battery_pct -gt 20 ]]; then
|
2019-10-24 19:09:05 +00:00
|
|
|
color='yellow'
|
|
|
|
else
|
|
|
|
color='red'
|
|
|
|
fi
|
2020-06-11 14:41:32 +00:00
|
|
|
echo "%{$fg[$color]%}${battery_pct}%%%{$reset_color%}"
|
2019-10-24 19:09:05 +00:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2020-06-11 14:41:32 +00:00
|
|
|
elif [[ "$OSTYPE" = linux* ]]; then
|
2019-01-12 15:47:23 +00:00
|
|
|
|
|
|
|
function battery_is_charging() {
|
2020-06-11 14:41:32 +00:00
|
|
|
! acpi 2>/dev/null | command grep -v "rate information unavailable" | command grep -q '^Battery.*Discharging'
|
2019-01-12 15:47:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function battery_pct() {
|
2020-06-11 14:41:32 +00:00
|
|
|
if (( $+commands[acpi] )); then
|
|
|
|
acpi 2>/dev/null | command grep -v "rate information unavailable" | command grep -E '^Battery.*(Full|(Disc|C)harging)' | cut -f2 -d ',' | tr -cd '[:digit:]'
|
2019-01-12 15:47:23 +00:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
function battery_pct_remaining() {
|
2020-06-11 14:41:32 +00:00
|
|
|
if ! battery_is_charging; then
|
2019-01-12 15:47:23 +00:00
|
|
|
battery_pct
|
|
|
|
else
|
|
|
|
echo "External Power"
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
function battery_time_remaining() {
|
2020-06-11 14:41:32 +00:00
|
|
|
if ! battery_is_charging; then
|
|
|
|
acpi 2>/dev/null | command grep -v "rate information unavailable" | cut -f3 -d ','
|
2019-01-12 15:47:23 +00:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
function battery_pct_prompt() {
|
2020-06-11 14:41:32 +00:00
|
|
|
local battery_pct color
|
|
|
|
battery_pct=$(battery_pct_remaining)
|
|
|
|
if battery_is_charging; then
|
|
|
|
echo "∞"
|
|
|
|
else
|
|
|
|
if [[ $battery_pct -gt 50 ]]; then
|
2019-01-12 15:47:23 +00:00
|
|
|
color='green'
|
2020-06-11 14:41:32 +00:00
|
|
|
elif [[ $battery_pct -gt 20 ]]; then
|
2019-01-12 15:47:23 +00:00
|
|
|
color='yellow'
|
|
|
|
else
|
|
|
|
color='red'
|
|
|
|
fi
|
2020-06-11 14:41:32 +00:00
|
|
|
echo "%{$fg[$color]%}${battery_pct}%%%{$reset_color%}"
|
2019-01-12 15:47:23 +00:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
else
|
|
|
|
# Empty functions so we don't cause errors in prompts
|
2020-06-11 14:41:32 +00:00
|
|
|
function battery_is_charging { false }
|
|
|
|
function battery_pct \
|
|
|
|
battery_pct_remaining \
|
|
|
|
battery_time_remaining \
|
|
|
|
battery_pct_prompt { }
|
2019-01-12 15:47:23 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
function battery_level_gauge() {
|
2020-06-11 14:41:32 +00:00
|
|
|
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
|
2019-01-12 15:47:23 +00:00
|
|
|
|
|
|
|
if [[ $battery_remaining_percentage =~ [0-9]+ ]]; then
|
2020-06-11 14:41:32 +00:00
|
|
|
filled=$(( ($battery_remaining_percentage * $gauge_slots) / 100 ))
|
|
|
|
empty=$(( $gauge_slots - $filled ))
|
2019-01-12 15:47:23 +00:00
|
|
|
|
2020-06-11 14:41:32 +00:00
|
|
|
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
|
2019-01-12 15:47:23 +00:00
|
|
|
fi
|
|
|
|
else
|
2020-06-11 14:41:32 +00:00
|
|
|
filled=$gauge_slots
|
|
|
|
empty=0
|
|
|
|
filled_symbol=${BATTERY_UNKNOWN_SYMBOL:-'.'}
|
2019-01-12 15:47:23 +00:00
|
|
|
fi
|
|
|
|
|
2020-06-11 14:41:32 +00:00
|
|
|
local charging=' '
|
|
|
|
battery_is_charging && charging=$charging_symbol
|
2019-01-12 15:47:23 +00:00
|
|
|
|
2020-06-11 14:41:32 +00:00
|
|
|
# Charging status and prefix
|
|
|
|
print -n ${charging_color}${charging}${color_reset}${battery_prefix}${gauge_color}
|
|
|
|
# Filled slots
|
|
|
|
[[ $filled -gt 0 ]] && printf ${filled_symbol//\%/\%\%}'%.0s' {1..$filled}
|
|
|
|
# Empty slots
|
2019-01-12 15:47:23 +00:00
|
|
|
[[ $filled -lt $gauge_slots ]] && printf ${empty_symbol//\%/\%\%}'%.0s' {1..$empty}
|
2020-06-11 14:41:32 +00:00
|
|
|
# Suffix
|
|
|
|
print -n ${color_reset}${battery_suffix}${color_reset}
|
2019-01-12 15:47:23 +00:00
|
|
|
}
|