X-Git-Url: http://git.grml.org/?p=grml-etc-core.git;a=blobdiff_plain;f=etc%2Fzsh%2Fzshrc;h=835768387ddbf4ed82aa324c5b7e9bc270f0c6e5;hp=3deb1e0c11cd71eeb31e4908c0214f3b315a50fe;hb=d53b0881571848e2755e2aedcd2d00a3d9e0653a;hpb=0aea68e15d4b7cda80555c3009bb95687e4fbec3 diff --git a/etc/zsh/zshrc b/etc/zsh/zshrc index 3deb1e0..8357683 100644 --- a/etc/zsh/zshrc +++ b/etc/zsh/zshrc @@ -1729,8 +1729,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 @@ -2411,8 +2411,6 @@ hash -d linux=/lib/modules/$(command uname -r)/build/ hash -d log=/var/log hash -d slog=/var/log/syslog hash -d src=/usr/src -hash -d templ=/usr/share/doc/grml-templates -hash -d tt=/usr/share/doc/texttools-doc hash -d www=/var/www #d# end @@ -3021,10 +3019,16 @@ fi # useful functions -#f5# Backup \kbd{file {\rm to} file\_timestamp} +#f5# Backup \kbd{file_or_folder {\rm to} file_or_folder\_timestamp} bk() { emulate -L zsh - cp -b $1 $1_`date --iso-8601=m` + if islinux; then + cp -a "$1" "$1_$(date --iso-8601=m)" + elif isopenbsd; then + cp -R "$1" "$1_$(date "+%FT%H:%M")" + else; + echo 'sorry, not yet implemented, send a patch!' >&2 + fi } #f5# cd to directoy and list files