diff --git a/src/app/data_harvester.rs b/src/app/data_harvester.rs index 4065f7ed..ae276703 100644 --- a/src/app/data_harvester.rs +++ b/src/app/data_harvester.rs @@ -105,9 +105,11 @@ impl DataState { pub async fn update_data(&mut self) { self.sys.refresh_system(); - if !cfg!(target_os = "linux") { - // For now, might be just windows tbh + if cfg!(not(target_os = "linux")) { self.sys.refresh_processes(); + self.sys.refresh_components(); + } + if cfg!(target_os = "windows") { self.sys.refresh_networks(); }