a7b22359add5ca99048c558cd824d12a0abde9b3
[dotfiles.git] / Scripts / statusbar / blocks_ram
1 #!/bin/sh
2
3 # alternate script to display total ram too
4 #ram="$(free -t -m | grep Mem | awk '{printf "%sM:%sM", $3, $2}')"
5 ram="$(free -t -m | grep Mem | awk '{printf "%sM", $3}')"
6 echo -e "$ram"
7