From 346053d980a1b26f7603a08d435693311bd62c89 Mon Sep 17 00:00:00 2001 From: Josh Lay Date: Sat, 22 Apr 2023 12:59:08 -0500 Subject: [PATCH] log the temp info sources too --- gpustats.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gpustats.py b/gpustats.py index 96a02f9..f7569a3 100755 --- a/gpustats.py +++ b/gpustats.py @@ -115,6 +115,8 @@ class GPUStats(App): self.update_log("[bold italic]Information sources:[/]") for metric, source in src_files.items(): self.update_log(f'[bold] {metric}:[/] {source}') + for metric, source in temp_files.items(): + self.update_log(f'[bold] {metric} temperature:[/] {source}') def action_toggle_dark(self) -> None: """An action to toggle dark mode."""