X-Git-Url: http://git.grml.org/?p=grml-etc-core.git;a=blobdiff_plain;f=etc%2Fzsh%2Fzshrc;h=cf4dd50ce3b9c7599256143bce93e917fc75ba42;hp=ae4292391353ba75b2b21a9610e8bb5a80b2a0c7;hb=4c996b32b6e6c664b1bf07fd1ff508da4db8e2e0;hpb=dedf36c9aea8b97843719a55f88492fbdd04a426 diff --git a/etc/zsh/zshrc b/etc/zsh/zshrc index ae42923..cf4dd50 100644 --- a/etc/zsh/zshrc +++ b/etc/zsh/zshrc @@ -1393,7 +1393,6 @@ bind2maps emacs -- Left backward-char bind2maps viins vicmd -- Left vi-backward-char bind2maps emacs -- Right forward-char bind2maps viins vicmd -- Right vi-forward-char -bind2maps viins vicmd -- Right vi-forward-char #k# Perform abbreviation expansion bind2maps emacs viins -- -s '^x.' zleiab #k# Display list of abbreviations that would expand @@ -1659,6 +1658,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 +1696,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 + bat=$(sysctl -n hw.sensors.acpibat${num} 2>/dev/null) + 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)"%% *} @@ -1727,8 +1728,8 @@ GRML_BATTERY_LEVEL='' local num local -A table for num in 0 1 ; do - table=( ${=${${${${${(M)${(f)"$(acpiconf -i $num)"}:#(State|Remaining capacity):*}%%( ##|%)}//:[ $'\t']##/@}// /-}//@/ }} ) - if [[ $table[State] != "not-present" ]] ; then + table=( ${=${${${${${(M)${(f)"$(acpiconf -i $num 2>&1)"}:#(State|Remaining capacity):*}%%( ##|%)}//:[ $'\t']##/@}// /-}//@/ }} ) + if [[ -n $table ]] && [[ $table[State] != "not-present" ]] ; then case $table[State] in *discharging*) if (( $table[Remaining-capacity] < 20 )) ; then @@ -1749,6 +1750,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=$( 0 )); do + if islinux; then + cp -a "$1" "$1_$current_date" + elif isfreebsd; then + if [[ -d "$1" ]] && [[ "$1" == */ ]]; then + echo "cowardly refusing to copy $1 's content; see cp(1)" >&2; return 1 + else + cp -a "$1" "$1_$current_date" + fi + else; + cp -pR "$1" "$1_$current_date" + fi + shift + done } #f5# cd to directoy and list files