misc: cleanup
This commit is contained in:
parent
8ad455a1ce
commit
4895ed33b1
1 changed files with 3 additions and 3 deletions
6
neofetch
6
neofetch
|
@ -2252,8 +2252,8 @@ get_memory() {
|
||||||
# Source: https://github.com/KittyKatt/screenFetch/issues/386#issuecomment-249312716
|
# Source: https://github.com/KittyKatt/screenFetch/issues/386#issuecomment-249312716
|
||||||
while IFS=":" read -r a b; do
|
while IFS=":" read -r a b; do
|
||||||
case "$a" in
|
case "$a" in
|
||||||
"MemTotal") mem_used="$((mem_used+=${b/kB}))"; mem_total="${b/kB}" ;;
|
"MemTotal") ((mem_used+=${b/kB})); mem_total="${b/kB}" ;;
|
||||||
"Shmem") mem_used="$((mem_used+=${b/kB}))" ;;
|
"Shmem") ((mem_used+=${b/kB})) ;;
|
||||||
"MemFree" | "Buffers" | "Cached" | "SReclaimable")
|
"MemFree" | "Buffers" | "Cached" | "SReclaimable")
|
||||||
mem_used="$((mem_used-=${b/kB}))"
|
mem_used="$((mem_used-=${b/kB}))"
|
||||||
;;
|
;;
|
||||||
|
@ -3408,7 +3408,7 @@ get_cols() {
|
||||||
cols="${cols//nl/\\n\\e[${text_padding}C${zws}}"
|
cols="${cols//nl/\\n\\e[${text_padding}C${zws}}"
|
||||||
|
|
||||||
# Add block height to info height.
|
# Add block height to info height.
|
||||||
info_height="$((info_height+=block_height+2))"
|
((info_height+=block_height+2))
|
||||||
|
|
||||||
printf "%b\n" "\e[${text_padding}C${zws}${cols}"
|
printf "%b\n" "\e[${text_padding}C${zws}${cols}"
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in a new issue