summaryrefslogtreecommitdiff
path: root/plugins/battery/battery.plugin.zsh
diff options
context:
space:
mode:
authorfred-o <fredrik.appelberg@gmail.com>2012-01-16 09:58:03 +0100
committerfred-o <fredrik.appelberg@gmail.com>2012-01-16 09:58:03 +0100
commitf5041025844a2509f42e0bb19cb8d5418340e10c (patch)
treed810a157291582707ef3c41e934830c4138fccb4 /plugins/battery/battery.plugin.zsh
parente24230cbfb766320fa13fcda6c1adb60028288f4 (diff)
parent7a41498b0d4f68c537d494b5f849913361315fde (diff)
downloadzsh-f5041025844a2509f42e0bb19cb8d5418340e10c.tar.gz
zsh-f5041025844a2509f42e0bb19cb8d5418340e10c.tar.bz2
zsh-f5041025844a2509f42e0bb19cb8d5418340e10c.zip
Merge branch 'master' of https://github.com/robbyrussell/oh-my-zsh
Diffstat (limited to 'plugins/battery/battery.plugin.zsh')
-rw-r--r--plugins/battery/battery.plugin.zsh20
1 files changed, 20 insertions, 0 deletions
diff --git a/plugins/battery/battery.plugin.zsh b/plugins/battery/battery.plugin.zsh
new file mode 100644
index 000000000..bc75c5cf9
--- /dev/null
+++ b/plugins/battery/battery.plugin.zsh
@@ -0,0 +1,20 @@
+if [[ $(acpi 2&>/dev/null | grep -c '^Battery.*Discharging') -gt 0 ]] ; then
+ function battery_pct_remaining() { echo "$(acpi | cut -f2 -d ',' | tr -cd '[:digit:]')" }
+ function battery_time_remaining() { echo $(acpi | cut -f3 -d ',') }
+ function battery_pct_prompt() {
+ b=$(battery_pct_remaining)
+ if [ $b -gt 50 ] ; then
+ color='green'
+ elif [ $b -gt 20 ] ; then
+ color='yellow'
+ else
+ color='red'
+ fi
+ echo "%{$fg[$color]%}[$(battery_pct_remaining)%%]%{$reset_color%}"
+ }
+else
+ error_msg='no battery'
+ function battery_pct_remaining() { echo $error_msg }
+ function battery_time_remaining() { echo $error_msg }
+ function battery_pct_prompt() { echo '' }
+fi