From 3bfcb16c089fd7eabbcd8d44a92b63902b5d49ad Mon Sep 17 00:00:00 2001 From: Reed Riley Date: Wed, 14 Sep 2016 11:21:59 -0400 Subject: [PATCH] fixed battery.plugin when acpi writes to stderr --- plugins/battery/battery.plugin.zsh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/battery/battery.plugin.zsh b/plugins/battery/battery.plugin.zsh index 014bb15dd..a99c28ebb 100644 --- a/plugins/battery/battery.plugin.zsh +++ b/plugins/battery/battery.plugin.zsh @@ -72,7 +72,7 @@ elif [[ $(uname) == "Linux" ]] ; then function battery_pct() { if (( $+commands[acpi] )) ; then - echo "$(acpi | cut -f2 -d ',' | tr -cd '[:digit:]')" + echo "$(acpi 2&>/dev/null | cut -f2 -d ',' | tr -cd '[:digit:]')" fi } @@ -86,7 +86,7 @@ elif [[ $(uname) == "Linux" ]] ; then function battery_time_remaining() { if [[ $(acpi 2&>/dev/null | grep -c '^Battery.*Discharging') -gt 0 ]] ; then - echo $(acpi | cut -f3 -d ',') + echo $(acpi 2&>/dev/null | cut -f3 -d ',') fi }