aboutsummaryrefslogtreecommitdiff
path: root/config/i3blocks/scripts/ram
blob: ebf830904e9008d60560cd4237e87479fe90eb88 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/env dash

ram=$(awk '
/MemTotal/ { total = $2 }
/Active:/ { active = $2 }
END {print int((active/total)*100)}
' /proc/meminfo)

echo ": $ram%"
echo "R: $ram"

if [ "$ram" -gt 80 ]; then
	echo "#FF0000"
fi