2023-02-23 16:43:38 +00:00
|
|
|
// SPDX-FileCopyrightText: 2023 Devin Lin <devin@kde.org>
|
|
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
|
|
|
|
|
|
#include <KIO/CommandLauncherJob>
|
|
|
|
|
#include <KNotificationJobUiDelegate>
|
|
|
|
|
#include <KPluginFactory>
|
|
|
|
|
|
|
|
|
|
#include <QProcess>
|
|
|
|
|
|
|
|
|
|
#include "settings.h"
|
|
|
|
|
#include "startdaemon.h"
|
|
|
|
|
|
2023-03-01 20:58:56 +00:00
|
|
|
K_PLUGIN_CLASS_WITH_JSON(PlasmaMobileStartDaemon, "kded_plasma_mobile_start.json")
|
2023-02-23 16:43:38 +00:00
|
|
|
|
|
|
|
|
PlasmaMobileStartDaemon::PlasmaMobileStartDaemon(QObject *parent, const QList<QVariant> &)
|
|
|
|
|
: KDEDModule{parent}
|
|
|
|
|
{
|
|
|
|
|
// apply configuration
|
|
|
|
|
Settings::self()->applyConfiguration();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#include "startdaemon.moc"
|