From feeacdd1ce1c01667d63e57e0b3e7561d8c19ea2 Mon Sep 17 00:00:00 2001 From: Coopydood <39441479+Coopydood@users.noreply.github.com> Date: Sat, 23 Sep 2023 16:21:39 +0100 Subject: [PATCH] CPU model listed in script verbose output --- resources/baseConfig | 1 + scripts/drpc.py | 5 +++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/resources/baseConfig b/resources/baseConfig index d90bdac..b7e4f1c 100644 --- a/resources/baseConfig +++ b/resources/baseConfig @@ -114,6 +114,7 @@ echo \ \ \ \ \ $NAME echo echo \ \ \ \ \ $FILE echo \ \ \ \ \ Built with ULTMOS v$ULTMOS_VERSION +echo \ \ \ \ \ Using $CPU_MODEL CPU model if [ $REQUIRES_SUDO = 1 ] then echo \ \ \ \ \ Superuser priviledges enabled diff --git a/scripts/drpc.py b/scripts/drpc.py index 0cebece..96bda4d 100644 --- a/scripts/drpc.py +++ b/scripts/drpc.py @@ -66,12 +66,13 @@ try: RPC.connect() - RPC.update(large_image="ultmos",large_text=projectVer,details="Loading...",buttons=([{"label": "View on GitHub", "url": "https://github.com/Coopydood/ultimate-macOS-KVM"}])) # Updates our presence + RPC.update(large_image="ultmos",large_text=projectVer,details="Loading...",buttons=([{"label": "View on GitHub", "url": "https://github.com/Coopydood/ultimate-macOS-KVM"}])) except: exit time.sleep(4) try: - RPC.update(small_image="ultmoslite",large_image=osOpt,large_text=osName,small_text=projectVer,details=osName,start=startTime,buttons=([{"label": "View on GitHub", "url": "https://github.com/Coopydood/ultimate-macOS-KVM"}])) # Updates our presence + RPC.update(small_image="ultmoslite",large_image=osOpt,large_text=osName,small_text=projectVer,details=osName,start=startTime,buttons=([{"label": "View on GitHub", "url": "https://github.com/Coopydood/ultimate-macOS-KVM"}])) + #RPC.update(small_image=osOpt,large_image="ultmos",large_text=osName,small_text=projectVer,details=osName,start=startTime,buttons=([{"label": "View on GitHub", "url": "https://github.com/Coopydood/ultimate-macOS-KVM"}])) while True: time.sleep(15) except: