Commit 23a43e9f authored by Robby Russell's avatar Robby Russell
Browse files

Merge pull request #2574 from thiagowfx/linux-battery

added the linux implementation to the battery plugin
parents 080409a5 564a708d
...@@ -62,9 +62,19 @@ if [[ $(uname) == "Darwin" ]] ; then ...@@ -62,9 +62,19 @@ if [[ $(uname) == "Darwin" ]] ; then
elif [[ $(uname) == "Linux" ]] ; then elif [[ $(uname) == "Linux" ]] ; then
function battery_pct_remaining() { function battery_is_charging() {
if [[ $(acpi 2&>/dev/null | grep -c '^Battery.*Discharging') -gt 0 ]] ; then ! [[ $(acpi 2&>/dev/null | grep -c '^Battery.*Discharging') -gt 0 ]]
}
function battery_pct() {
echo "$(acpi | cut -f2 -d ',' | tr -cd '[:digit:]')" echo "$(acpi | cut -f2 -d ',' | tr -cd '[:digit:]')"
}
function battery_pct_remaining() {
if [ ! $(battery_is_charging) ] ; then
battery_pct
else
echo "External Power"
fi fi
} }
...@@ -90,15 +100,6 @@ elif [[ $(uname) == "Linux" ]] ; then ...@@ -90,15 +100,6 @@ elif [[ $(uname) == "Linux" ]] ; then
fi fi
} }
function battery_pct() {
# todo for on linux
}
function battery_is_charging() {
# todo on linux
false
}
else else
# Empty functions so we don't cause errors in prompts # Empty functions so we don't cause errors in prompts
function battery_pct_remaining() { function battery_pct_remaining() {
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment