aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDylan Araps <dylan.araps@gmail.com>2019-09-25 17:44:39 +0300
committerDylan Araps <dylan.araps@gmail.com>2019-09-25 17:44:39 +0300
commitb4bd81e9150b18c331b094590f49dbb2b61465f9 (patch)
tree86b10113dd7644c8f20964a227a56884539de4ad
parent223de3d82afd00381522e05d9c46b5daf4cef9a0 (diff)
downloadpfetch-b4bd81e9150b18c331b094590f49dbb2b61465f9.tar.gz
docs: update
-rwxr-xr-xpfetch4
1 files changed, 2 insertions, 2 deletions
diff --git a/pfetch b/pfetch
index c21f030..fa34aa1 100755
--- a/pfetch
+++ b/pfetch
@@ -443,12 +443,12 @@ get_memory() {
vm.stats.vm.v_cache_count)
}
- # Calculate the amount of free memory.
+ # Calculate the amount of used memory.
# $1: hw.pagesize
# $2: vm.stats.vm.v_inactive_count
# $3: vm.stats.vm.v_free_count
# $4: vm.stats.vm.v_cache_count
- mem_free=$((($2 + $3 + $4) * $1 / 1024 / 1024))
+ mem_used=$((($2 + $3 + $4) * $1 / 1024 / 1024))
;;
NetBSD*)