From 2d3b014918963ec37971fc3e19e0cdf59e232f8d Mon Sep 17 00:00:00 2001 From: adlee-was-taken Date: Fri, 19 Dec 2025 20:05:13 -0500 Subject: [PATCH] Auto-sync from catchthesethighs --- zsh/functions/motd.zsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zsh/functions/motd.zsh b/zsh/functions/motd.zsh index 55442dd..bd2fc4a 100644 --- a/zsh/functions/motd.zsh +++ b/zsh/functions/motd.zsh @@ -51,7 +51,7 @@ _motd_mem() { } _motd_disk() { - df -h / 2>/dev/null | awk 'NR==2 {print $4 " free"}' || echo "N/A" + df -h / 2>/dev/null | awk 'NR==2 {print $3 "/" $4}' || echo "N/A" } # ============================================================================