made memory_bar easier to use
This commit is contained in:
parent
78e78a08f2
commit
2ac5c9e791
9
neofetch
9
neofetch
|
@ -1130,12 +1130,11 @@ getmemory () {
|
|||
esac
|
||||
|
||||
# Progress bars
|
||||
if [ "$memory_bar" == "on" ]; then
|
||||
case "$memory_info" in
|
||||
"off") memory=" $(bar "$memused" "$memtotal")" ;;
|
||||
*) memory+=" $(bar "$memused" "$memtotal")" ;;
|
||||
case "$memory_info_bar" in
|
||||
"bar") memory="$(bar "${memused}" "${memtotal}")" ;;
|
||||
"infobar") memory="${memory} $(bar "${memused}" "${memtotal}")" ;;
|
||||
"barinfo") memory="$(bar "${memused}" "${memtotal}") ${memory}" ;;
|
||||
esac
|
||||
fi
|
||||
}
|
||||
|
||||
# }}}
|
||||
|
|
Reference in New Issue