diff options
author | Alejandro Sirgo Rica <asirgo@soleta.eu> | 2024-11-12 13:27:50 +0100 |
---|---|---|
committer | Alejandro Sirgo Rica <asirgo@soleta.eu> | 2024-11-26 13:02:45 +0100 |
commit | 179d17cae83b9c22137a140c850a11f9f5dcfcc2 (patch) | |
tree | c16594a0eb3d0aeb63c4963bc8fa58bc609c3bb7 | |
parent | bc7fe848ac935a969f8dac3363881b9abcd195af (diff) |
windows: make the systray reference local to OgWindowsOperations
-rw-r--r-- | src/windows/ogOperations.py | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/src/windows/ogOperations.py b/src/windows/ogOperations.py index 81ba19b..6178224 100644 --- a/src/windows/ogOperations.py +++ b/src/windows/ogOperations.py @@ -61,25 +61,23 @@ def create_systray(): icon.run() -systray_p = Process(target=create_systray) - - class OgWindowsOperations: def __init__(self): freeze_support() mp.set_start_method('spawn') - systray_p.start() + self.systray_p = Process(target=create_systray) + self.systray_p.start() def _restartBrowser(self, url): raise OgError('Function not implemented') def poweroff(self): - systray_p.terminate() + self.systray_p.terminate() os.system('shutdown -s -t 0') def reboot(self): - systray_p.terminate() + self.systray_p.terminate() os.system('shutdown -r -t 0') def shellrun(self, request, ogRest): |