diff --git a/app/src/handlers/systemhandler.cpp b/app/src/handlers/systemhandler.cpp index b7d7bc3d8db5fb3bc54f9b7e88878aac1f7a00e5..52ef97a4e3c79a9424b6189db446874468bda8b1 100644 --- a/app/src/handlers/systemhandler.cpp +++ b/app/src/handlers/systemhandler.cpp @@ -98,7 +98,8 @@ bool SystemHandler::isApplicableType(const QString &installType) const if (desktop == "kde") { applicableTypes << "wallpapers" << "icons" - << "cursors"; + << "cursors" + << "plasma_desktopthemes"; } else if (desktop == "gnome") { applicableTypes << "wallpapers" @@ -130,6 +131,9 @@ bool SystemHandler::applyFile(const QString &path, const QString &installType) c else if (installType == "cursors") { return applyKdeCursor(path); } + else if (installType == "plasma_desktopthemes") { + return applyKdePlasmaDesktoptheme(path); + } } else if (desktop == "gnome") { if (installType == "wallpapers") { @@ -237,6 +241,31 @@ bool SystemHandler::applyKdeCursor(const QString &path) const return true; } +bool SystemHandler::applyKdePlasmaDesktoptheme(const QString &path) const +{ + auto themeName = QFileInfo(path).fileName(); + auto message = QDBusMessage::createMethodCall("org.kde.plasmashell", "/PlasmaShell", "org.kde.PlasmaShell", "evaluateScript"); + + QString script; + QTextStream out(&script); + out << "var c = ConfigFile('plasmarc');" + << "c.group = 'Theme';" + << "c.writeEntry('name', '" + themeName + "');"; + + QVariantList arguments; + arguments << QVariant(script); + message.setArguments(arguments); + + auto reply = QDBusConnection::sessionBus().call(message); + + if (reply.type() == QDBusMessage::ErrorMessage) { + qWarning() << reply.errorMessage(); + return false; + } + + return true; +} + bool SystemHandler::applyGnomeWallpaper(const QString &path) const { QStringList arguments{"set", "org.gnome.desktop.background", "picture-uri", "file://" + path}; diff --git a/app/src/handlers/systemhandler.h b/app/src/handlers/systemhandler.h index a29cf8687625c0736b7ebe806014f5042db1db88..764a38ead955b99d2953e262a6f8fa792cdae476 100644 --- a/app/src/handlers/systemhandler.h +++ b/app/src/handlers/systemhandler.h @@ -26,6 +26,7 @@ private: bool applyKdeWallpaper(const QString &path) const; bool applyKdeIcon(const QString &path) const; bool applyKdeCursor(const QString &path) const; + bool applyKdePlasmaDesktoptheme(const QString &path) const; bool applyGnomeWallpaper(const QString &path) const; bool applyGnomeIcon(const QString &path) const;