mirror of
https://github.com/ohmybash/oh-my-bash.git
synced 2024-05-11 05:55:37 +00:00
180 lines
5.8 KiB
Bash
180 lines
5.8 KiB
Bash
#! bash oh-my-bash.module
|
|
|
|
function _omb_plugin_battery__upower_print_info {
|
|
upower -i "$(upower -e | sed -n '/BAT/{p;q;}')"
|
|
}
|
|
|
|
## @fn ac_adapter_connected
|
|
## @exit 0 if the adapter is disconnected, or non-zero exit status
|
|
## otherwise.
|
|
function ac_adapter_connected {
|
|
if _omb_util_command_exists upower; then
|
|
_omb_plugin_battery__upower_print_info | grep -qE 'state[:[:blank:]]*(charging|fully-charged)'
|
|
elif _omb_util_command_exists acpi; then
|
|
acpi -a | grep -q "on-line"
|
|
elif _omb_util_command_exists pmset; then
|
|
pmset -g batt | grep -q 'AC Power'
|
|
elif _omb_util_command_exists ioreg; then
|
|
ioreg -n AppleSmartBattery -r | grep -q '"ExternalConnected" = Yes'
|
|
elif _omb_util_command_exists WMIC; then
|
|
WMIC Path Win32_Battery Get BatteryStatus /Format:List | grep -q 'BatteryStatus=2'
|
|
elif [[ -r /sys/class/power_supply/ADP0/online ]]; then
|
|
[[ $(< /sys/class/power_supply/ADP0/online) == 1 ]]
|
|
fi
|
|
}
|
|
|
|
## @fn ac_adapter_disconnected
|
|
## @exit 0 if the adapter is disconnected, or non-zero exit status
|
|
## otherwise.
|
|
function ac_adapter_disconnected {
|
|
if _omb_util_command_exists upower; then
|
|
_omb_plugin_battery__upower_print_info | grep -qE 'state[:[:blank:]]*discharging'
|
|
elif _omb_util_command_exists acpi; then
|
|
acpi -a | grep -q "off-line"
|
|
elif _omb_util_command_exists pmset; then
|
|
pmset -g batt | grep -q 'Battery Power'
|
|
elif _omb_util_command_exists ioreg; then
|
|
ioreg -n AppleSmartBattery -r | grep -q '"ExternalConnected" = No'
|
|
elif _omb_util_command_exists WMIC; then
|
|
WMIC Path Win32_Battery Get BatteryStatus /Format:List | grep -q 'BatteryStatus=1'
|
|
elif [[ -r /sys/class/power_supply/ADP0/online ]]; then
|
|
[[ $(< /sys/class/power_supply/ADP0/online) == 0 ]]
|
|
fi
|
|
}
|
|
|
|
## @fn battery_percentage
|
|
## @about 'displays battery charge as a percentage of full (100%)'
|
|
## @group 'battery'
|
|
function battery_percentage {
|
|
if _omb_util_command_exists upower; then
|
|
local UPOWER_OUTPUT=$(_omb_plugin_battery__upower_print_info | sed -n 's/.*percentage[:[:blank:]]*\([0-9%]\{1,\}\)$/\1/p')
|
|
[[ $UPOWER_OUTPUT ]] &&
|
|
echo "${UPOWER_OUTPUT::-1}"
|
|
elif _omb_util_command_exists acpi; then
|
|
local ACPI_OUTPUT=$(acpi -b)
|
|
case $ACPI_OUTPUT in
|
|
*" Unknown"*)
|
|
local PERC_OUTPUT=$(echo $ACPI_OUTPUT | head -c 22 | tail -c 2)
|
|
case $PERC_OUTPUT in
|
|
*%)
|
|
echo "0${PERC_OUTPUT}" | head -c 2
|
|
;;
|
|
*)
|
|
echo ${PERC_OUTPUT}
|
|
;;
|
|
esac
|
|
;;
|
|
|
|
*" Charging"* | *" Discharging"*)
|
|
local PERC_OUTPUT=$(echo $ACPI_OUTPUT | awk -F, '/,/{gsub(/ /, "", $0); gsub(/%/,"", $0); print $2}' )
|
|
echo ${PERC_OUTPUT}
|
|
;;
|
|
*" Full"*)
|
|
echo '100'
|
|
;;
|
|
*)
|
|
echo '-1'
|
|
;;
|
|
esac
|
|
elif _omb_util_command_exists pmset; then
|
|
local PMSET_OUTPUT=$(pmset -g ps | sed -n 's/.*[[:blank:]]+*\(.*%\).*/\1/p')
|
|
case $PMSET_OUTPUT in
|
|
100*)
|
|
echo '100'
|
|
;;
|
|
*)
|
|
echo $PMSET_OUTPUT | head -c 2
|
|
;;
|
|
esac
|
|
elif _omb_util_command_exists ioreg; then
|
|
local IOREG_OUTPUT=$(ioreg -n AppleSmartBattery -r | awk '$1~/Capacity/{c[$1]=$3} END{OFMT="%05.2f%%"; max=c["\"MaxCapacity\""]; print (max>0? 100*c["\"CurrentCapacity\""]/max: "?")}')
|
|
case $IOREG_OUTPUT in
|
|
100*)
|
|
echo '100'
|
|
;;
|
|
*)
|
|
echo $IOREG_OUTPUT | head -c 2
|
|
;;
|
|
esac
|
|
elif _omb_util_command_exists WMIC; then
|
|
local WINPC=$(echo porcent=$(WMIC PATH Win32_Battery Get EstimatedChargeRemaining /Format:List) | grep -o '[0-9]*')
|
|
case $WINPC in
|
|
100*)
|
|
echo '100'
|
|
;;
|
|
*)
|
|
echo $WINPC
|
|
;;
|
|
esac
|
|
elif [[ -r /sys/class/power_supply/BAT0/capacity ]]; then
|
|
echo "$(< /sys/class/power_supply/BAT0/capacity)"
|
|
fi
|
|
}
|
|
|
|
## @fn battery_charge
|
|
## @about 'graphical display of your battery charge'
|
|
## @group 'battery'
|
|
function battery_charge {
|
|
# Full char
|
|
local F_C='▸'
|
|
# Depleted char
|
|
local D_C='▹'
|
|
local DEPLETED_COLOR="${_omb_prompt_normal}"
|
|
local FULL_COLOR="${_omb_prompt_green}"
|
|
local HALF_COLOR="${_omb_prompt_olive}"
|
|
local DANGER_COLOR="${_omb_prompt_brown}"
|
|
local BATTERY_OUTPUT="${DEPLETED_COLOR}${D_C}${D_C}${D_C}${D_C}${D_C}"
|
|
local BATTERY_PERC=$(battery_percentage)
|
|
|
|
case $BATTERY_PERC in
|
|
no)
|
|
echo ""
|
|
;;
|
|
9*)
|
|
echo "${FULL_COLOR}${F_C}${F_C}${F_C}${F_C}${F_C}${_omb_prompt_normal}"
|
|
;;
|
|
8*)
|
|
echo "${FULL_COLOR}${F_C}${F_C}${F_C}${F_C}${HALF_COLOR}${F_C}${_omb_prompt_normal}"
|
|
;;
|
|
7*)
|
|
echo "${FULL_COLOR}${F_C}${F_C}${F_C}${F_C}${DEPLETED_COLOR}${D_C}${_omb_prompt_normal}"
|
|
;;
|
|
6*)
|
|
echo "${FULL_COLOR}${F_C}${F_C}${F_C}${HALF_COLOR}${F_C}${DEPLETED_COLOR}${D_C}${_omb_prompt_normal}"
|
|
;;
|
|
5*)
|
|
echo "${FULL_COLOR}${F_C}${F_C}${F_C}${DEPLETED_COLOR}${D_C}${D_C}${_omb_prompt_normal}"
|
|
;;
|
|
4*)
|
|
echo "${FULL_COLOR}${F_C}${F_C}${HALF_COLOR}${F_C}${DEPLETED_COLOR}${D_C}${D_C}${_omb_prompt_normal}"
|
|
;;
|
|
3*)
|
|
echo "${FULL_COLOR}${F_C}${F_C}${DEPLETED_COLOR}${D_C}${D_C}${D_C}${_omb_prompt_normal}"
|
|
;;
|
|
2*)
|
|
echo "${FULL_COLOR}${F_C}${HALF_COLOR}${F_C}${DEPLETED_COLOR}${D_C}${D_C}${D_C}${_omb_prompt_normal}"
|
|
;;
|
|
1*)
|
|
echo "${FULL_COLOR}${F_C}${DEPLETED_COLOR}${D_C}${D_C}${D_C}${D_C}${_omb_prompt_normal}"
|
|
;;
|
|
05)
|
|
echo "${DANGER_COLOR}${F_C}${DEPLETED_COLOR}${D_C}${D_C}${D_C}${D_C}${_omb_prompt_normal}"
|
|
;;
|
|
04)
|
|
echo "${DANGER_COLOR}${F_C}${DEPLETED_COLOR}${D_C}${D_C}${D_C}${D_C}${_omb_prompt_normal}"
|
|
;;
|
|
03)
|
|
echo "${DANGER_COLOR}${F_C}${DEPLETED_COLOR}${D_C}${D_C}${D_C}${D_C}${_omb_prompt_normal}"
|
|
;;
|
|
02)
|
|
echo "${DANGER_COLOR}${F_C}${DEPLETED_COLOR}${D_C}${D_C}${D_C}${D_C}${_omb_prompt_normal}"
|
|
;;
|
|
0*)
|
|
echo "${HALF_COLOR}${F_C}${DEPLETED_COLOR}${D_C}${D_C}${D_C}${D_C}${_omb_prompt_normal}"
|
|
;;
|
|
*)
|
|
echo "${DANGER_COLOR}UNPLG${_omb_prompt_normal}"
|
|
;;
|
|
esac
|
|
}
|