dwmbar/modules/ram
2019-10-22 15:31:25 +01:00

16 lines
282 B
Bash
Executable file

#!/bin/bash
# Prints the total ram and used ram in Mb
PREFIX='﬙ '
get_ram()
{
TOTAL_RAM=$(free -m | awk {'print $2'} | head -n 2 | tail -1)
FREE_RAM=$(free -m | awk {'print $3'} | head -n 2 | tail -1)
MB="MB"
echo "$PREFIX$FREE_RAM/$TOTAL_RAM$MB"
}
get_ram