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:
parent
d848c94804
commit
bd8fdbf782
@ -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:]')"
|
||||||
|
Loading…
Reference in New Issue
Block a user