// SPDX-FileCopyrightText: 2023 Devin Lin // SPDX-License-Identifier: GPL-2.0-or-later #include #include #include #include #include "start.h" PlasmaMobileStartDaemon::PlasmaMobileStartDaemon(QObject *parent, const QList &) : KDEDModule{parent} { auto *job = new KIO::CommandLauncherJob(QStringLiteral("plasma-mobile-envmanager --apply-settings"), {}); job->setUiDelegate(new KNotificationJobUiDelegate(KJobUiDelegate::AutoErrorHandlingEnabled)); job->setDesktopName(QStringLiteral("org.kde.plasma-mobile-envmanager")); job->start(); } #include "start.moc"