1
0
mirror of https://github.com/tw93/Mole.git synced 2026-02-11 19:24:00 +00:00

Optimize the start speed of optimize

This commit is contained in:
Tw93
2025-12-06 20:57:08 +08:00
parent 1b2da97032
commit 03610e34a5
4 changed files with 22 additions and 21 deletions

View File

@@ -121,8 +121,8 @@ show_system_health() {
uptime=${uptime:-0}
# Compact one-line format with icon
printf "${ICON_ADMIN} System %.0f/%.0f GB RAM | %.0f/%.0f GB Disk (%.0f%%) | Uptime %.0fd\n" \
"$mem_used" "$mem_total" "$disk_used" "$disk_total" "$disk_percent" "$uptime"
printf "${ICON_ADMIN} System %.0f/%.0f GB RAM | %.0f/%.0f GB Disk | Uptime %.0fd\n" \
"$mem_used" "$mem_total" "$disk_used" "$disk_total" "$uptime"
echo ""
}