elenapan/Scripts/ram.sh
elena dd677bde98 massive config and scripts update
Former-commit-id: 46c2bf7d26
Former-commit-id: ec0b4e689f3f8e97d837848929a1a6a9e45f779b
Former-commit-id: 19f055447f5fd666a270a51cf98b05d70716e826
2018-01-21 14:19:40 +02:00

11 lines
260 B
Bash
Executable file

# Icon and percentage
#free -m | awk 'NR==2{printf " %d%%\n", $3*100/$2 }'
# Text and percentage
#free -m | awk 'NR==2{printf "mem %d%%\n", $3*100/$2 }'
# Full
free -m | awk 'NR==2{printf "Memory Usage: %s/%sMB (%.2f%%)\n", $3,$2,$3*100/$2 }'
#  