dotfiles/.config/conky/scripts/mem_info_old.sh
2022-10-07 00:24:37 +02:00

5 lines
99 B
Bash
Executable File

#!/bin/bash
mem_info=$(free -h | awk '/Mem:/ { printf(" %5s/%s \n", $3, $2) }')
echo ${mem_info}