X-Git-Url: http://git.grml.org/?a=blobdiff_plain;f=etc%2Fzsh%2Fzshrc;h=a19c9acaaf54f343698daa52473e681b6738dcc3;hb=f95ed49fb1c35f205050dd9b509067bdcde98fb2;hp=ae4292391353ba75b2b21a9610e8bb5a80b2a0c7;hpb=dedf36c9aea8b97843719a55f88492fbdd04a426;p=grml-etc-core.git diff --git a/etc/zsh/zshrc b/etc/zsh/zshrc index ae42923..a19c9ac 100644 --- a/etc/zsh/zshrc +++ b/etc/zsh/zshrc @@ -1659,6 +1659,8 @@ if [[ $GRML_DISPLAY_BATTERY -gt 0 ]] ; then batteryopenbsd elif isfreebsd ; then batteryfreebsd + elif isdarwin ; then + batterydarwin else #not yet supported GRML_DISPLAY_BATTERY=0 @@ -1695,10 +1697,10 @@ fi batteryopenbsd(){ GRML_BATTERY_LEVEL='' -local batfull batwarn batnow num +local bat batfull batwarn batnow num for num in 0 1 ; do bat=$(sysctl -n hw.sensors.acpibat${num}) - if [[ ! -z $bat ]]; then + if [[ -n $bat ]]; then batfull=${"$(sysctl -n hw.sensors.acpibat${num}.amphour0)"%% *} batwarn=${"$(sysctl -n hw.sensors.acpibat${num}.amphour1)"%% *} batnow=${"$(sysctl -n hw.sensors.acpibat${num}.amphour3)"%% *} @@ -1749,6 +1751,30 @@ for num in 0 1 ; do done } +batterydarwin(){ +GRML_BATTERY_LEVEL='' +local -a table +table=( ${$(pmset -g ps)[(w)7,8]%%(\%|);} ) +if [[ -n $table[2] ]] ; then + case $table[2] in + charging) + GRML_BATTERY_LEVEL+=" ^" + ;; + discharging) + if (( $table[1] < 20 )) ; then + GRML_BATTERY_LEVEL+=" !v" + else + GRML_BATTERY_LEVEL+=" v" + fi + ;; + *) + GRML_BATTERY_LEVEL+=" =" + ;; + esac + GRML_BATTERY_LEVEL+="$table[1]%%" +fi +} + # set variable debian_chroot if running in a chroot with /etc/debian_chroot if [[ -z "$debian_chroot" ]] && [[ -r /etc/debian_chroot ]] ; then debian_chroot=$(