aerothemeplasma/kwin/decoration/breeze-v5.93.0/misc/breezetobreezelight/main.cpp

25 lines
790 B
C++
Raw Normal View History

#include <KColorScheme>
#include <KConfig>
#include <KConfigGroup>
#include <QDebug>
2024-08-09 01:20:25 +00:00
int main(int, char**)
{
KConfig globals("kdeglobals");
2024-08-09 01:20:25 +00:00
KConfigGroup general(&globals, QStringLiteral("General"));
if (general.readEntry("ColorScheme") != QLatin1String("Breeze")) {
return 0;
}
QString breezeLightPath = QStandardPaths::locate(QStandardPaths::GenericDataLocation, QStringLiteral("color-schemes/BreezeLight.colors"));
if (breezeLightPath.isEmpty()) {
return 0;
}
KConfig breezeLight(breezeLightPath, KConfig::SimpleConfig);
for (const auto &group : breezeLight.groupList()) {
auto destination = KConfigGroup(&globals, group);
KConfigGroup(&breezeLight, group).copyTo(&destination, KConfig::Notify);
}
2024-08-09 01:20:25 +00:00
return 0;
}