mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-12 00:40:07 +00:00
Merge pull request #2574 from thiagowfx/linux-battery
added the linux implementation to the battery plugin
This commit is contained in:
commit
23a43e9fd6
1 changed files with 12 additions and 11 deletions
|
@ -62,9 +62,19 @@ if [[ $(uname) == "Darwin" ]] ; then
|
|||
|
||||
elif [[ $(uname) == "Linux" ]] ; then
|
||||
|
||||
function battery_is_charging() {
|
||||
! [[ $(acpi 2&>/dev/null | grep -c '^Battery.*Discharging') -gt 0 ]]
|
||||
}
|
||||
|
||||
function battery_pct() {
|
||||
echo "$(acpi | cut -f2 -d ',' | tr -cd '[:digit:]')"
|
||||
}
|
||||
|
||||
function battery_pct_remaining() {
|
||||
if [[ $(acpi 2&>/dev/null | grep -c '^Battery.*Discharging') -gt 0 ]] ; then
|
||||
echo "$(acpi | cut -f2 -d ',' | tr -cd '[:digit:]')"
|
||||
if [ ! $(battery_is_charging) ] ; then
|
||||
battery_pct
|
||||
else
|
||||
echo "External Power"
|
||||
fi
|
||||
}
|
||||
|
||||
|
@ -90,15 +100,6 @@ elif [[ $(uname) == "Linux" ]] ; then
|
|||
fi
|
||||
}
|
||||
|
||||
function battery_pct() {
|
||||
# todo for on linux
|
||||
}
|
||||
|
||||
function battery_is_charging() {
|
||||
# todo on linux
|
||||
false
|
||||
}
|
||||
|
||||
else
|
||||
# Empty functions so we don't cause errors in prompts
|
||||
function battery_pct_remaining() {
|
||||
|
|
Loading…
Reference in a new issue