Add archive count to backup disk display

This commit is contained in:
2025-11-29 17:41:11 +01:00
parent faa30a7839
commit f5913dbd43
4 changed files with 13 additions and 3 deletions

View File

@@ -544,6 +544,9 @@ impl SystemWidget {
details.push(format!("W: {}%", wear as i32));
}
// Add archive count
details.push(format!("Archives: {}", disk.total_archives));
let disk_text = if !details.is_empty() {
format!("{} {}", truncated_serial, details.join(" "))
} else {