From cfbf5a435e141517af134af94be4efd416f81be9 Mon Sep 17 00:00:00 2001 From: Josh Lay Date: Sun, 23 Apr 2023 12:01:55 -0500 Subject: [PATCH] rename script/stylesheet for packaging --- gpustats.css => amdgpu_stats.css | 0 gpustats.py => amdgpu_stats.py | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename gpustats.css => amdgpu_stats.css (100%) rename gpustats.py => amdgpu_stats.py (99%) diff --git a/gpustats.css b/amdgpu_stats.css similarity index 100% rename from gpustats.css rename to amdgpu_stats.css diff --git a/gpustats.py b/amdgpu_stats.py similarity index 99% rename from gpustats.py rename to amdgpu_stats.py index b34aa43..d16ca83 100755 --- a/gpustats.py +++ b/amdgpu_stats.py @@ -97,7 +97,7 @@ class GPUStats(App): # determine the real path of the script, to load the stylesheet SCRIPT_PATH = path.dirname(path.realpath(__file__)) - CSS_PATH = path.join(SCRIPT_PATH, "gpustats.css") + CSS_PATH = path.join(SCRIPT_PATH, "amdgpu_stats.css") # initialize log screen SCREENS = {"logs": LogScreen()}