memory [openbsd]: Fix crash
This commit is contained in:
parent
a53cbdbc14
commit
5ffd5149b4
1 changed files with 1 additions and 1 deletions
2
neofetch
2
neofetch
|
@ -1411,7 +1411,7 @@ get_memory() {
|
|||
|
||||
# Mem used.
|
||||
case "$kernel_name" in
|
||||
"OpenBSD"*) mem_used="$(($(vmstat | awk 'END{printf $4}') / 1024))" ;;
|
||||
"OpenBSD"*) mem_used="$(($(vmstat | awk -F ' |M' 'END{printf $4}') / 1024))" ;;
|
||||
*) mem_used="$((mem_total - mem_free))" ;;
|
||||
esac
|
||||
;;
|
||||
|
|
Loading…
Reference in a new issue