mirror of
https://git.adityakumar.xyz/dwmbar.git
synced 2024-11-09 14:19:43 +00:00
16 lines
282 B
Bash
16 lines
282 B
Bash
#!/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
|