MRMJ-1: Messenger & Skills fixes

This commit is contained in:
Mind Rapist
2025-12-14 05:15:02 +02:00
parent 44bc09631e
commit c34595a188
13 changed files with 202 additions and 188 deletions

View File

@@ -18,7 +18,7 @@ def stop_pid(pid, name):
subprocess.call(["taskkill", "/F", "/PID", str(pid)],
stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL)
else:
os.kill(pid, signal.SIGHUP)
os.kill(pid, signal.SIGTERM)
except ProcessLookupError:
print(f"> Process {pid} ({name}) not found, skipping.")
except Exception as e: