Skip to content
Snippets Groups Projects
Commit 169a2a97 authored by akiraohgaki's avatar akiraohgaki
Browse files

Apply gtk3 theme with xfce

parent 2ac308ff
No related branches found
No related tags found
No related merge requests found
......@@ -112,7 +112,8 @@ bool SystemHandler::isApplicableType(const QString &installType) const
else if (desktop == "xfce") {
applicableTypes << "wallpapers"
<< "icons"
<< "cursors";
<< "cursors"
<< "gtk3_themes";
}
return applicableTypes.contains(installType);
......@@ -169,6 +170,9 @@ bool SystemHandler::applyFile(const QString &path, const QString &installType) c
else if (installType == "cursors") {
return applyXfceCursor(themeName);
}
else if (installType == "gtk3_themes") {
return applyXfceGtk3Theme(themeName);
}
}
}
......@@ -319,4 +323,9 @@ bool SystemHandler::applyXfceCursor(const QString &themeName) const
{
return setConfigWithXfconf("xsettings", "/Gtk/CursorThemeName", themeName);
}
bool SystemHandler::applyXfceGtk3Theme(const QString &themeName) const
{
return setConfigWithXfconf("xsettings", "/Net/ThemeName", themeName);
}
#endif
......@@ -41,5 +41,6 @@ private:
bool applyXfceWallpaper(const QString &path) const;
bool applyXfceIcon(const QString &themeName) const;
bool applyXfceCursor(const QString &themeName) const;
bool applyXfceGtk3Theme(const QString &themeName) const;
#endif
};
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment