From f108910b87a12ab560c86769c6d804be78162926 Mon Sep 17 00:00:00 2001 From: Daniel Weschke Date: Sun, 4 Apr 2021 22:07:53 +0200 Subject: [PATCH] fix process recognizer --- controldeck_gui.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/controldeck_gui.py b/controldeck_gui.py index b49249b..5793e2e 100644 --- a/controldeck_gui.py +++ b/controldeck_gui.py @@ -4,7 +4,7 @@ from webview import create_window, start import controldeck def main(): - if controldeck.process("ps -ef | grep -i controldeck.py | grep -v grep") == "": + if controldeck.process("ps -ef | grep -i controldeck | grep -v controldeck-gui | grep -v grep") == "": controldeck.main() config = controldeck.config_load()