Redisgned the way CPU tempature is detected and the start up notification

This commit is contained in:
2025-06-12 01:44:21 -04:00
parent 97e3348bd4
commit 3dbc105ae3
5 changed files with 75 additions and 53 deletions

View File

@ -9,6 +9,8 @@ def package_installed(package_name: str) -> Optional[bool]:
print(f"Package \"{package_name}\" not installed.")
return installed
except Exception as err:
print(err)
print(f"\033[31m{err}\033[0m")
return None
def uname() -> str:
return subprocess.run(["uname", "-a"], capture_output=True, text=True).stdout.strip()