Files
myi3/files/configs/i3/myi3blocks/myi3memory
2026-02-14 21:23:19 +01:00

7 lines
173 B
Bash
Executable File

#!/bin/bash
MEM_STAT=$(free -m | grep Mem | awk '{print $2,$3}')
MEM_USED_MB=${MEM_STAT##* }
MEM_USED_GB=$(echo "scale=2;$MEM_USED_MB/1024" | bc -l)
echo "$MEM_USED_GB GB"