aboutsummaryrefslogtreecommitdiff
path: root/Scripts/.local/scripts/status/memory
blob: e53921a70c76c974cd7a11797ab38aaa69699112 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/bash

line=$(free -m | sed -n 2p);
used=$(echo $line | awk '{print $3}');
available=$(echo $line | awk '{print $2}');
value=$(echo "100 * $used / $available" | bc -l | xargs printf "%.2f" $1)

emacs=$(systemctl --user status emacs | grep "Memory: " | sed "s/[ ]*//;s/Memory: //")
if [[ $emacs -eq "" ]];
then
    emacs="N/A"
fi

echo " $(printf "%dMB" $used) $value% ->  $emacs"