I 💔 the modern web
~ $ uname -srm
OpenBSD 7.8 amd64
~ $ sysctl -n hw.physmem |awk '{print $1/1024**3, " GiB"}'
3.72584 GiB
~ $ sysctl -n hw.physmem |awk '{print $1/1000**3, " GB"}'
4.00059 GB
~ $ ps wwaux |head -1
USER PID %CPU %MEM VSZ RSS TT STAT STARTED TIME COMMAND
~ $ ps wwaux |awk '$0~/firefox/ {t+=$6}; END {print t/1024, "MiB"}'
972.234 MiB
~ $
P.S., I forgot to mention that this is with a fresh run of firefox with only a single blank tab. XD
🍵 