8 lines
124 B
Plaintext
8 lines
124 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
icon=""
|
||
|
mem="$(free -h | awk '/^Mem/ { print $3"/"$2 }' | sed s/i//g)"
|
||
|
|
||
|
printf " %s %s \\n" "$icon" "$mem"
|
||
|
|