From 4efd990ff1951ecd26a0d8b4091041527c53831f Mon Sep 17 00:00:00 2001 From: Sean Jones Date: Tue, 29 Jan 2013 11:40:12 +0000 Subject: [PATCH] Added the inifinite symbol --- 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 1540166de..cc9342c77 100644 --- a/plugins/battery/battery.plugin.zsh +++ b/plugins/battery/battery.plugin.zsh @@ -42,7 +42,7 @@ if [[ $(uname) == "Darwin" ]] ; then fi echo "%{$fg[$color]%}[$(battery_pct_remaining)%%]%{$reset_color%}" else - echo "" + echo "∞" fi } @@ -72,7 +72,7 @@ elif [[ $(uname) == "Linux" ]] ; then fi echo "%{$fg[$color]%}[$(battery_pct_remaining)%%]%{$reset_color%}" else - echo "" + echo "∞" fi } fi