Added plugged_in func for linux in battery plugin

Cloned battery_is_charging() func with the same name as the osx version in order to maintain compatibility across the systems in themes that make use of the plugin.
This commit is contained in:
Igor Moura 2017-07-28 01:28:49 -03:00 committed by GitHub
parent d848c94804
commit bd8fdbf782

View File

@ -70,6 +70,10 @@ elif [[ "$OSTYPE" = linux* ]] ; then
! [[ $(acpi 2>/dev/null | grep -c '^Battery.*Discharging') -gt 0 ]] ! [[ $(acpi 2>/dev/null | grep -c '^Battery.*Discharging') -gt 0 ]]
} }
function plugged_in() {
! [[ $(acpi 2>/dev/null | grep -c '^Battery.*Discharging') -gt 0 ]]
}
function battery_pct() { function battery_pct() {
if (( $+commands[acpi] )) ; then if (( $+commands[acpi] )) ; then
echo "$(acpi 2>/dev/null | cut -f2 -d ',' | tr -cd '[:digit:]')" echo "$(acpi 2>/dev/null | cut -f2 -d ',' | tr -cd '[:digit:]')"