From 57c67d39c9453bff268c507d5bf16650ba28fb67 Mon Sep 17 00:00:00 2001 From: Silvan Calarco Date: Thu, 24 Oct 2019 18:51:57 +0200 Subject: [PATCH] Support for launching the new mambabase --- src/mambatray | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/mambatray b/src/mambatray index 3478d18..7ecb8c3 100755 --- a/src/mambatray +++ b/src/mambatray @@ -59,11 +59,10 @@ class SystemTrayIcon(QSystemTrayIcon): # software menu global softwareManagerProcess, softwareCheckUpgradesProcess,\ - softwareBaseInstallsProcess, dcopServerProcess + softwareBaseInstallsProcess softwareManagerProcess = QProcess(self) softwareCheckUpgradesProcess = QProcess(self) softwareBaseInstallsProcess = QProcess(self) - dcopServerProcess = QProcess(self) softwareMenu = self.menu.addMenu(QIcon.fromTheme("applications-system"),_("Software")) softwareManageAction = softwareMenu.addAction(QIcon.fromTheme("applications-other"),_("Add/Remove software packages...")) @@ -189,8 +188,7 @@ class SystemTrayIcon(QSystemTrayIcon): refreshPackagesTimer.start( (4 * 60 + 31) * 60000) def softwareBaseInstalls(self): - dcopServerProcess.startDetached("/opt/kde3/bin/dcopserver") - softwareBaseInstallsProcess.start("/opt/kde3/bin/kmdr-executor", ['/usr/share/openmamba/mambabase/mambabase.kmdr']) + softwareBaseInstallsProcess.start("/usr/bin/mambabase") def networkFirewallDisable(self): networkFirewallDisableProcess.start("sudo",['/usr/sbin/ufw','disable'])