From 640f2a04330b690a0ed829b4dc47de442ce55c9f Mon Sep 17 00:00:00 2001 From: Garrett Holmstrom Date: Thu, 21 May 2020 23:17:43 -0700 Subject: [PATCH] Fix darwin battery info field selection The batterydarwin function looks for the info it wants using field numbers that are off by one on the current version of Mac OS. I'm not sure which version this changed in or what exactly they added (I suspect it is the battery ID), but this patch makes battery info start working again. --- etc/zsh/zshrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etc/zsh/zshrc b/etc/zsh/zshrc index 2969729..817a9b5 100644 --- a/etc/zsh/zshrc +++ b/etc/zsh/zshrc @@ -1856,7 +1856,7 @@ done function batterydarwin () { GRML_BATTERY_LEVEL='' local -a table -table=( ${$(pmset -g ps)[(w)7,8]%%(\%|);} ) +table=( ${$(pmset -g ps)[(w)8,9]%%(\%|);} ) if [[ -n $table[2] ]] ; then case $table[2] in charging) -- 2.1.4