From c525d6213ce291d1408be5d5653c7677b5b44655 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marek=20Marczykowski-G=C3=B3recki?= Date: Mon, 2 Apr 2018 23:17:14 +0200 Subject: [PATCH] qubes-session-autostart: do not wait for applications exit Since fixing QubesOS/qubes-issues#3213, launch function correctly waits for some applications exit. This is undesirable for qubes-session-autostart service, which should just start the applications and exit. --- misc/qubes-session-autostart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misc/qubes-session-autostart b/misc/qubes-session-autostart index bad7541..04a8de3 100644 --- a/misc/qubes-session-autostart +++ b/misc/qubes-session-autostart @@ -76,7 +76,7 @@ def process_autostart(environments): else: entry = DesktopEntry(entry_path) if entry_should_be_started(entry, environments): - launch(entry_path) + launch(entry_path, wait=False) except Exception as e: print >>sys.stderr, "Failed to process '{}': {}".format( entry_name, str(e)