made memory_bar easier to use

This commit is contained in:
Andrew Titmuss 2016-03-13 00:00:02 +11:00
parent 78e78a08f2
commit 2ac5c9e791
1 changed files with 5 additions and 6 deletions

View File

@ -1130,12 +1130,11 @@ getmemory () {
esac esac
# Progress bars # Progress bars
if [ "$memory_bar" == "on" ]; then case "$memory_info_bar" in
case "$memory_info" in "bar") memory="$(bar "${memused}" "${memtotal}")" ;;
"off") memory=" $(bar "$memused" "$memtotal")" ;; "infobar") memory="${memory} $(bar "${memused}" "${memtotal}")" ;;
*) memory+=" $(bar "$memused" "$memtotal")" ;; "barinfo") memory="$(bar "${memused}" "${memtotal}") ${memory}" ;;
esac esac
fi
} }
# }}} # }}}