dotfiles/.config/dwm/scripts/mem_info.sh

5 lines
97 B
Bash
Raw Normal View History

2022-04-29 00:02:04 +02:00
#!/bin/bash
2022-05-01 11:58:42 +02:00
mem_info=$(free -h | awk '/Mem:/ { printf("%5s/%s \n", $3, $2) }')
2022-04-29 00:02:04 +02:00
echo ${mem_info}