feat: disk section enhancements - temperature, partition indentation, duplicate filtering

This commit is contained in:
2025-10-06 10:30:55 -07:00
parent 47eff3a75c
commit 34e260a612
4 changed files with 71 additions and 7 deletions
+2
View File
@@ -15,6 +15,8 @@ pub struct DiskInfo {
pub name: String,
pub total: u64,
pub available: u64,
pub temperature: Option<f32>,
pub is_partition: bool,
}
#[derive(Debug, Clone, Deserialize, Serialize)]