dwm-blocks-blocks/ram-free.sh
2023-04-29 12:35:05 -07:00

8 lines
303 B
Bash
Executable File

#!/bin/sh
# See Luke Smith's sb-memory
#https://github.com/LukeSmithxyz/voidrice/blob/master/.local/bin/statusbar/sb-memory
#free --mebi | sed -n '2{p;q}' | awk '{printf (" %2.2fG/%2.2fG\n", ( $3 / 1000), ($2 / 1000))}'
free --mebi | sed -n '2{p;q}' | awk '{printf (" %2.2fG\n", ( $3 / 1024))}'