Dotfiles update 2025-12-24 22:49

This commit is contained in:
Aaron D. Lee
2025-12-24 22:49:48 -05:00
parent f55ea98231
commit 048191212c
2 changed files with 4 additions and 1 deletions

View File

@@ -43,7 +43,7 @@ SET_ZSH_DEFAULT="ask"
# --- MOTD (Message of the Day) --- # --- MOTD (Message of the Day) ---
ENABLE_MOTD="true" ENABLE_MOTD="true"
MOTD_STYLE="compact" # compact, mini, full, or none MOTD_STYLE="mini" # compact, mini, full, or none
# --- Theme Settings --- # --- Theme Settings ---
ZSH_THEME_NAME="adlee" ZSH_THEME_NAME="adlee"

View File

@@ -211,6 +211,9 @@ show_motd_mini() {
local hostname="${HOST:-$(hostname -s 2>/dev/null)}" local hostname="${HOST:-$(hostname -s 2>/dev/null)}"
local uptime=$(_motd_uptime) local uptime=$(_motd_uptime)
local mem=$(_motd_mem) local mem=$(_motd_mem)
local load=$(_motd_load)
local disk=$(_motd_disk)
local hline=$(_motd_line '═')
local failed=$(_motd_failed_services) local failed=$(_motd_failed_services)
local alert="" local alert=""