6 lines
116 B
Bash
Executable File
6 lines
116 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# simple script to show systemmemory in dwmblocks
|
|
|
|
free -h | awk '/^Mem/ { print $3"/"$2 }' | sed s/i//g
|