From 2e9a2d4f99a8203efd62d8d18c869cd5b6d4f8dd Mon Sep 17 00:00:00 2001 From: Philip Date: Mon, 7 May 2018 21:26:41 +0200 Subject: [PATCH] src: fix calamares password-less start --- src/manjaro_hello.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/manjaro_hello.py b/src/manjaro_hello.py index 30d0971..3040cca 100644 --- a/src/manjaro_hello.py +++ b/src/manjaro_hello.py @@ -231,7 +231,7 @@ class Hello(): """Event for differents actions.""" name = action.get_name() if name == "install": - subprocess.Popen(["pkexec", "calamares"]) + subprocess.Popen(["calamares_polkit"]) elif name == "autostart": self.set_autostart(action.get_active()) elif name == "about":