diff --git a/app/src/handlers/systemhandler.cpp b/app/src/handlers/systemhandler.cpp index b6351d4cd9470480604126a3878109ce462b5829..5c4cb04ab6c0240bf93d4494fc9b8c9c3b8ac614 100644 --- a/app/src/handlers/systemhandler.cpp +++ b/app/src/handlers/systemhandler.cpp @@ -99,7 +99,7 @@ bool SystemHandler::isApplicableType(const QString &installType) const applicableTypes << "wallpapers"; } else if (desktop == "gnome") { - applicableTypes << "wallpapers" << "icons" << "cursors"; + applicableTypes << "wallpapers" << "icons" << "cursors" << "gtk3_themes"; } else if (desktop == "xfce") { applicableTypes << "wallpapers"; @@ -129,6 +129,9 @@ bool SystemHandler::applyFile(const QString &path, const QString &installType) c else if (installType == "cursors") { return applyGnomeCursor(path); } + else if (installType == "gtk3_themes") { + return applyGnomeGtk3Theme(path); + } } else if (desktop == "xfce") { if (installType == "wallpapers") { @@ -189,6 +192,13 @@ bool SystemHandler::applyGnomeCursor(const QString &path) const return QProcess::startDetached("gsettings", arguments); } +bool SystemHandler::applyGnomeGtk3Theme(const QString &path) const +{ + auto themeName = QFileInfo(path).fileName(); + QStringList arguments{"set", "org.gnome.desktop.interface", "gtk-theme", themeName}; + return QProcess::startDetached("gsettings", arguments); +} + bool SystemHandler::applyXfceWallpaper(const QString &path) const { auto message = QDBusMessage::createMethodCall("org.xfce.Xfconf", "/org/xfce/Xfconf", "org.xfce.Xfconf", "SetProperty"); diff --git a/app/src/handlers/systemhandler.h b/app/src/handlers/systemhandler.h index 7145021262acfc0372aee222125ffc6f5c44826b..d99d48468e36f3161ea0bf60577ceb54542d0901 100644 --- a/app/src/handlers/systemhandler.h +++ b/app/src/handlers/systemhandler.h @@ -28,6 +28,7 @@ private: bool applyGnomeWallpaper(const QString &path) const; bool applyGnomeIcon(const QString &path) const; bool applyGnomeCursor(const QString &path) const; + bool applyGnomeGtk3Theme(const QString &path) const; bool applyXfceWallpaper(const QString &path) const; #endif