Update neofetch
Separating calculations as shown in https://github.com/dylanaraps/neofetch/pull/2225#issuecomment-1296882170
This commit is contained in:
parent
ca13eb22e7
commit
d57463b0d3
1 changed files with 11 additions and 9 deletions
18
neofetch
18
neofetch
|
@ -2811,17 +2811,20 @@ get_memory() {
|
|||
tib)
|
||||
mem_label=TiB
|
||||
memory_unit_divider=$((1024 * 1024))
|
||||
printf -v mem_used "%'.*f" \
|
||||
"${mem_precision}" \
|
||||
$((mem_used / memory_unit_divider)).$((mem_used % memory_unit_divider))
|
||||
printf -v mem_total "%'.*f" \
|
||||
"${mem_precision}" \
|
||||
$((mem_total / memory_unit_divider)).$((mem_total % memory_unit_divider))
|
||||
;;
|
||||
|
||||
gib)
|
||||
mem_label=GiB
|
||||
memory_unit_divider=1024
|
||||
;;
|
||||
|
||||
kib)
|
||||
mem_label=KiB
|
||||
;;
|
||||
esac
|
||||
|
||||
case $mem_label in
|
||||
GiB|TiB)
|
||||
printf -v mem_used "%'.*f" \
|
||||
"${mem_precision}" \
|
||||
$((mem_used / memory_unit_divider)).$((mem_used % memory_unit_divider))
|
||||
|
@ -2830,10 +2833,9 @@ get_memory() {
|
|||
$((mem_total / memory_unit_divider)).$((mem_total % memory_unit_divider))
|
||||
;;
|
||||
|
||||
kib)
|
||||
KiB)
|
||||
mem_used=$((mem_used * 1024))
|
||||
mem_total=$((mem_total * 1024))
|
||||
mem_label=KiB
|
||||
;;
|
||||
esac
|
||||
|
||||
|
|
Loading…
Reference in a new issue