diff --git a/qgnomeplatform-add-support-for-kcolorscheme-using-adwaita-like-color-schemes.patch b/qgnomeplatform-add-support-for-kcolorscheme-using-adwaita-like-color-schemes.patch new file mode 100644 index 0000000..7d0ed3c --- /dev/null +++ b/qgnomeplatform-add-support-for-kcolorscheme-using-adwaita-like-color-schemes.patch @@ -0,0 +1,629 @@ +From d9c0210ac45f7de71750655a3ca0d89581d19f88 Mon Sep 17 00:00:00 2001 +From: Jan Grulich +Date: Fri, 10 Mar 2023 11:04:41 +0100 +Subject: [PATCH] Add support for KColorScheme using Adwaita-like color schemes + +--- + src/CMakeLists.txt | 1 + + src/color-schemes/Adwaita.colors | 120 ++++++++++++++ + src/color-schemes/AdwaitaDark.colors | 147 ++++++++++++++++++ + src/color-schemes/AdwaitaHighcontrast.colors | 120 ++++++++++++++ + .../AdwaitaHighcontrastInverse.colors | 147 ++++++++++++++++++ + src/color-schemes/CMakeLists.txt | 4 + + src/common/gnomesettings.cpp | 14 ++ + 7 files changed, 553 insertions(+) + create mode 100644 src/color-schemes/Adwaita.colors + create mode 100644 src/color-schemes/AdwaitaDark.colors + create mode 100644 src/color-schemes/AdwaitaHighcontrast.colors + create mode 100644 src/color-schemes/AdwaitaHighcontrastInverse.colors + create mode 100644 src/color-schemes/CMakeLists.txt + +diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt +index 1823d54..1241d6b 100644 +--- a/src/CMakeLists.txt ++++ b/src/CMakeLists.txt +@@ -1,3 +1,4 @@ ++add_subdirectory(color-schemes) + add_subdirectory(common) + + if (NOT DISABLE_DECORATION_SUPPORT) +diff --git a/src/color-schemes/Adwaita.colors b/src/color-schemes/Adwaita.colors +new file mode 100644 +index 0000000..2161672 +--- /dev/null ++++ b/src/color-schemes/Adwaita.colors +@@ -0,0 +1,120 @@ ++[ColorEffects:Disabled] ++Color=56,56,56 ++ColorAmount=0 ++ColorEffect=0 ++ContrastAmount=0.65 ++ContrastEffect=1 ++IntensityAmount=0.1 ++IntensityEffect=2 ++ ++[ColorEffects:Inactive] ++ChangeSelectionColor=true ++Color=112,111,110 ++ColorAmount=0.025 ++ColorEffect=2 ++ContrastAmount=0.1 ++ContrastEffect=2 ++Enable=false ++IntensityAmount=0 ++IntensityEffect=0 ++ ++[Colors:Button] ++BackgroundAlternate=241,239,238 ++BackgroundNormal=241,239,238 ++DecorationFocus=61,174,233 ++DecorationHover=147,206,233 ++ForegroundActive=61,174,233 ++ForegroundInactive=127,140,141 ++ForegroundLink=41,128,185 ++ForegroundNegative=218,68,83 ++ForegroundNeutral=198,92,0 ++ForegroundNormal=55,61,63 ++ForegroundPositive=39,174,96 ++ForegroundVisited=127,140,141 ++ ++[Colors:Complementary] ++BackgroundAlternate=59,64,69 ++BackgroundNormal=49,54,59 ++DecorationFocus=30,146,255 ++DecorationHover=61,174,230 ++ForegroundActive=147,206,233 ++ForegroundInactive=175,176,179 ++ForegroundLink=61,174,230 ++ForegroundNegative=231,76,60 ++ForegroundNeutral=253,188,75 ++ForegroundNormal=239,240,241 ++ForegroundPositive=46,204,113 ++ForegroundVisited=61,174,230 ++ ++[Colors:Selection] ++BackgroundAlternate=53,132,228 ++BackgroundNormal=53,132,228 ++DecorationFocus=61,174,233 ++DecorationHover=147,206,233 ++ForegroundActive=252,252,252 ++ForegroundInactive=239,240,241 ++ForegroundLink=253,188,75 ++ForegroundNegative=176,55,69 ++ForegroundNeutral=246,116,0 ++ForegroundNormal=252,253,255 ++ForegroundPositive=23,104,57 ++ForegroundVisited=189,195,199 ++ ++[Colors:Tooltip] ++BackgroundAlternate=0,0,0 ++BackgroundNormal=0,0,0 ++DecorationFocus=61,174,233 ++DecorationHover=147,206,233 ++ForegroundActive=61,174,233 ++ForegroundInactive=189,195,199 ++ForegroundLink=41,128,185 ++ForegroundNegative=218,68,83 ++ForegroundNeutral=246,116,0 ++ForegroundNormal=255,255,255 ++ForegroundPositive=39,174,96 ++ForegroundVisited=127,140,141 ++ ++[Colors:View] ++BackgroundAlternate=255,255,255 ++BackgroundNormal=255,255,255 ++DecorationFocus=61,174,233 ++DecorationHover=147,206,233 ++ForegroundActive=61,174,233 ++ForegroundInactive=25,25,25 ++ForegroundLink=41,128,185 ++ForegroundNegative=218,68,83 ++ForegroundNeutral=246,116,0 ++ForegroundNormal=25,25,25 ++ForegroundPositive=39,174,96 ++ForegroundVisited=127,140,141 ++ ++[Colors:Window] ++BackgroundAlternate=246,245,244 ++BackgroundNormal=246,245,244 ++DecorationFocus=61,174,233 ++DecorationHover=147,206,233 ++ForegroundActive=61,174,233 ++ForegroundInactive=127,140,141 ++ForegroundLink=41,128,185 ++ForegroundNegative=218,68,83 ++ForegroundNeutral=246,116,0 ++ForegroundNormal=54,59,61 ++ForegroundPositive=39,174,96 ++ForegroundVisited=127,140,141 ++ ++[General] ++ColorScheme=BreezeClassic ++Name=Adwaita ++TitlebarIsAccentColored=true ++shadeSortColumn=true ++ ++[KDE] ++contrast=4 ++ ++[WM] ++activeBackground=222,219,215 ++activeBlend=252,252,252 ++activeForeground=54,59,61 ++inactiveBackground=239,240,241 ++inactiveBlend=75,71,67 ++inactiveForeground=189,195,199 +diff --git a/src/color-schemes/AdwaitaDark.colors b/src/color-schemes/AdwaitaDark.colors +new file mode 100644 +index 0000000..bc92512 +--- /dev/null ++++ b/src/color-schemes/AdwaitaDark.colors +@@ -0,0 +1,147 @@ ++[ColorEffects:Disabled] ++Color=56,56,56 ++ColorAmount=0 ++ColorEffect=0 ++ContrastAmount=0.65 ++ContrastEffect=1 ++IntensityAmount=0.1 ++IntensityEffect=2 ++ ++[ColorEffects:Inactive] ++ChangeSelectionColor=true ++Color=112,111,110 ++ColorAmount=0.025 ++ColorEffect=2 ++ContrastAmount=0.1 ++ContrastEffect=2 ++Enable=false ++IntensityAmount=0 ++IntensityEffect=0 ++ ++[Colors:Button] ++BackgroundAlternate=52,52,52 ++BackgroundNormal=52,52,52 ++DecorationFocus=61,174,233 ++DecorationHover=61,174,233 ++ForegroundActive=61,174,233 ++ForegroundInactive=161,169,177 ++ForegroundLink=29,153,243 ++ForegroundNegative=218,68,83 ++ForegroundNeutral=246,116,0 ++ForegroundNormal=238,238,236 ++ForegroundPositive=39,174,96 ++ForegroundVisited=155,89,182 ++ ++[Colors:Complementary] ++BackgroundAlternate=30,87,116 ++BackgroundNormal=42,46,50 ++DecorationFocus=61,174,233 ++DecorationHover=61,174,233 ++ForegroundActive=61,174,233 ++ForegroundInactive=161,169,177 ++ForegroundLink=29,153,243 ++ForegroundNegative=218,68,83 ++ForegroundNeutral=246,116,0 ++ForegroundNormal=252,252,252 ++ForegroundPositive=39,174,96 ++ForegroundVisited=155,89,182 ++ ++[Colors:Header] ++BackgroundAlternate=49,54,59 ++BackgroundNormal=49,54,59 ++DecorationFocus=61,174,233 ++DecorationHover=61,174,233 ++ForegroundActive=61,174,233 ++ForegroundInactive=161,169,177 ++ForegroundLink=29,153,243 ++ForegroundNegative=218,68,83 ++ForegroundNeutral=246,116,0 ++ForegroundNormal=252,252,252 ++ForegroundPositive=39,174,96 ++ForegroundVisited=155,89,182 ++ ++[Colors:Header][Inactive] ++BackgroundAlternate=49,54,59 ++BackgroundNormal=42,46,50 ++DecorationFocus=61,174,233 ++DecorationHover=61,174,233 ++ForegroundActive=61,174,233 ++ForegroundInactive=161,169,177 ++ForegroundLink=29,153,243 ++ForegroundNegative=218,68,83 ++ForegroundNeutral=246,116,0 ++ForegroundNormal=252,252,252 ++ForegroundPositive=39,174,96 ++ForegroundVisited=155,89,182 ++ ++[Colors:Selection] ++BackgroundAlternate=21,83,158 ++BackgroundNormal=21,83,158 ++DecorationFocus=61,174,233 ++DecorationHover=61,174,233 ++ForegroundActive=252,252,252 ++ForegroundInactive=161,169,177 ++ForegroundLink=253,188,75 ++ForegroundNegative=176,55,69 ++ForegroundNeutral=198,92,0 ++ForegroundNormal=252,253,254 ++ForegroundPositive=23,104,57 ++ForegroundVisited=155,89,182 ++ ++[Colors:Tooltip] ++BackgroundAlternate=255,255,255 ++BackgroundNormal=255,255,255 ++DecorationFocus=61,174,233 ++DecorationHover=61,174,233 ++ForegroundActive=61,174,233 ++ForegroundInactive=161,169,177 ++ForegroundLink=29,153,243 ++ForegroundNegative=218,68,83 ++ForegroundNeutral=246,116,0 ++ForegroundNormal=0,0,0 ++ForegroundPositive=39,174,96 ++ForegroundVisited=155,89,182 ++ ++[Colors:View] ++BackgroundAlternate=45,45,45 ++BackgroundNormal=45,45,45 ++DecorationFocus=61,174,233 ++DecorationHover=61,174,233 ++ForegroundActive=61,174,233 ++ForegroundInactive=161,169,177 ++ForegroundLink=29,153,243 ++ForegroundNegative=218,68,83 ++ForegroundNeutral=246,116,0 ++ForegroundNormal=255,255,255 ++ForegroundPositive=39,174,96 ++ForegroundVisited=155,89,182 ++ ++[Colors:Window] ++BackgroundAlternate=53,53,53 ++BackgroundNormal=53,53,53 ++DecorationFocus=61,174,233 ++DecorationHover=61,174,233 ++ForegroundActive=61,174,233 ++ForegroundInactive=161,169,177 ++ForegroundLink=29,153,243 ++ForegroundNegative=218,68,83 ++ForegroundNeutral=246,116,0 ++ForegroundNormal=225,225,223 ++ForegroundPositive=39,174,96 ++ForegroundVisited=155,89,182 ++ ++[General] ++ColorScheme=BreezeDark ++Name=AdwaitaDark ++shadeSortColumn=true ++ ++[KDE] ++contrast=4 ++ ++[WM] ++activeBackground=41,41,41 ++activeBlend=252,252,252 ++activeForeground=225,225,223 ++inactiveBackground=42,46,50 ++inactiveBlend=161,169,177 ++inactiveForeground=161,169,177 +diff --git a/src/color-schemes/AdwaitaHighcontrast.colors b/src/color-schemes/AdwaitaHighcontrast.colors +new file mode 100644 +index 0000000..50f4aa9 +--- /dev/null ++++ b/src/color-schemes/AdwaitaHighcontrast.colors +@@ -0,0 +1,120 @@ ++[ColorEffects:Disabled] ++Color=56,56,56 ++ColorAmount=0 ++ColorEffect=0 ++ContrastAmount=0.65 ++ContrastEffect=1 ++IntensityAmount=0.1 ++IntensityEffect=2 ++ ++[ColorEffects:Inactive] ++ChangeSelectionColor=true ++Color=112,111,110 ++ColorAmount=0.025 ++ColorEffect=2 ++ContrastAmount=0.1 ++ContrastEffect=2 ++Enable=false ++IntensityAmount=0 ++IntensityEffect=0 ++ ++[Colors:Button] ++BackgroundAlternate=248,246,245 ++BackgroundNormal=248,246,245 ++DecorationFocus=61,174,233 ++DecorationHover=147,206,233 ++ForegroundActive=61,174,233 ++ForegroundInactive=127,140,141 ++ForegroundLink=41,128,185 ++ForegroundNegative=218,68,83 ++ForegroundNeutral=198,92,0 ++ForegroundNormal=47,52,54 ++ForegroundPositive=39,174,96 ++ForegroundVisited=127,140,141 ++ ++[Colors:Complementary] ++BackgroundAlternate=59,64,69 ++BackgroundNormal=49,54,59 ++DecorationFocus=30,146,255 ++DecorationHover=61,174,230 ++ForegroundActive=147,206,233 ++ForegroundInactive=175,176,179 ++ForegroundLink=61,174,230 ++ForegroundNegative=231,76,60 ++ForegroundNeutral=253,188,75 ++ForegroundNormal=239,240,241 ++ForegroundPositive=46,204,113 ++ForegroundVisited=61,174,230 ++ ++[Colors:Selection] ++BackgroundAlternate=53,132,228 ++BackgroundNormal=53,132,228 ++DecorationFocus=61,174,233 ++DecorationHover=147,206,233 ++ForegroundActive=252,252,252 ++ForegroundInactive=239,240,241 ++ForegroundLink=253,188,75 ++ForegroundNegative=176,55,69 ++ForegroundNeutral=246,116,0 ++ForegroundNormal=252,253,255 ++ForegroundPositive=23,104,57 ++ForegroundVisited=189,195,199 ++ ++[Colors:Tooltip] ++BackgroundAlternate=0,0,0 ++BackgroundNormal=0,0,0 ++DecorationFocus=61,174,233 ++DecorationHover=147,206,233 ++ForegroundActive=61,174,233 ++ForegroundInactive=189,195,199 ++ForegroundLink=41,128,185 ++ForegroundNegative=218,68,83 ++ForegroundNeutral=246,116,0 ++ForegroundNormal=255,255,255 ++ForegroundPositive=39,174,96 ++ForegroundVisited=127,140,141 ++ ++[Colors:View] ++BackgroundAlternate=255,255,255 ++BackgroundNormal=255,255,255 ++DecorationFocus=61,174,233 ++DecorationHover=147,206,233 ++ForegroundActive=61,174,233 ++ForegroundInactive=25,25,25 ++ForegroundLink=41,128,185 ++ForegroundNegative=218,68,83 ++ForegroundNeutral=246,116,0 ++ForegroundNormal=3,3,3 ++ForegroundPositive=39,174,96 ++ForegroundVisited=127,140,141 ++ ++[Colors:Window] ++BackgroundAlternate=253,253,252 ++BackgroundNormal=253,253,252 ++DecorationFocus=61,174,233 ++DecorationHover=147,206,233 ++ForegroundActive=61,174,233 ++ForegroundInactive=127,140,141 ++ForegroundLink=41,128,185 ++ForegroundNegative=218,68,83 ++ForegroundNeutral=246,116,0 ++ForegroundNormal=42,47,49 ++ForegroundPositive=39,174,96 ++ForegroundVisited=127,140,141 ++ ++[General] ++ColorScheme=BreezeClassic ++Name=AdwaitaHighcontrast ++TitlebarIsAccentColored=true ++shadeSortColumn=true ++ ++[KDE] ++contrast=4 ++ ++[WM] ++activeBackground=228,226,223 ++activeBlend=252,252,252 ++activeForeground=42,47,49 ++inactiveBackground=239,240,241 ++inactiveBlend=75,71,67 ++inactiveForeground=189,195,199 +diff --git a/src/color-schemes/AdwaitaHighcontrastInverse.colors b/src/color-schemes/AdwaitaHighcontrastInverse.colors +new file mode 100644 +index 0000000..b665c20 +--- /dev/null ++++ b/src/color-schemes/AdwaitaHighcontrastInverse.colors +@@ -0,0 +1,147 @@ ++[ColorEffects:Disabled] ++Color=56,56,56 ++ColorAmount=0 ++ColorEffect=0 ++ContrastAmount=0.65 ++ContrastEffect=1 ++IntensityAmount=0.1 ++IntensityEffect=2 ++ ++[ColorEffects:Inactive] ++ChangeSelectionColor=true ++Color=112,111,110 ++ColorAmount=0.025 ++ColorEffect=2 ++ContrastAmount=0.1 ++ContrastEffect=2 ++Enable=false ++IntensityAmount=0 ++IntensityEffect=0 ++ ++[Colors:Button] ++BackgroundAlternate=52,52,52 ++BackgroundNormal=52,52,52 ++DecorationFocus=61,174,233 ++DecorationHover=61,174,233 ++ForegroundActive=61,174,233 ++ForegroundInactive=161,169,177 ++ForegroundLink=29,153,243 ++ForegroundNegative=218,68,83 ++ForegroundNeutral=246,116,0 ++ForegroundNormal=238,238,236 ++ForegroundPositive=39,174,96 ++ForegroundVisited=155,89,182 ++ ++[Colors:Complementary] ++BackgroundAlternate=30,87,116 ++BackgroundNormal=42,46,50 ++DecorationFocus=61,174,233 ++DecorationHover=61,174,233 ++ForegroundActive=61,174,233 ++ForegroundInactive=161,169,177 ++ForegroundLink=29,153,243 ++ForegroundNegative=218,68,83 ++ForegroundNeutral=246,116,0 ++ForegroundNormal=252,252,252 ++ForegroundPositive=39,174,96 ++ForegroundVisited=155,89,182 ++ ++[Colors:Header] ++BackgroundAlternate=49,54,59 ++BackgroundNormal=49,54,59 ++DecorationFocus=61,174,233 ++DecorationHover=61,174,233 ++ForegroundActive=61,174,233 ++ForegroundInactive=161,169,177 ++ForegroundLink=29,153,243 ++ForegroundNegative=218,68,83 ++ForegroundNeutral=246,116,0 ++ForegroundNormal=252,252,252 ++ForegroundPositive=39,174,96 ++ForegroundVisited=155,89,182 ++ ++[Colors:Header][Inactive] ++BackgroundAlternate=49,54,59 ++BackgroundNormal=42,46,50 ++DecorationFocus=61,174,233 ++DecorationHover=61,174,233 ++ForegroundActive=61,174,233 ++ForegroundInactive=161,169,177 ++ForegroundLink=29,153,243 ++ForegroundNegative=218,68,83 ++ForegroundNeutral=246,116,0 ++ForegroundNormal=252,252,252 ++ForegroundPositive=39,174,96 ++ForegroundVisited=155,89,182 ++ ++[Colors:Selection] ++BackgroundAlternate=21,83,158 ++BackgroundNormal=21,83,158 ++DecorationFocus=61,174,233 ++DecorationHover=61,174,233 ++ForegroundActive=252,252,252 ++ForegroundInactive=161,169,177 ++ForegroundLink=253,188,75 ++ForegroundNegative=176,55,69 ++ForegroundNeutral=198,92,0 ++ForegroundNormal=252,253,254 ++ForegroundPositive=23,104,57 ++ForegroundVisited=155,89,182 ++ ++[Colors:Tooltip] ++BackgroundAlternate=255,255,255 ++BackgroundNormal=255,255,255 ++DecorationFocus=61,174,233 ++DecorationHover=61,174,233 ++ForegroundActive=61,174,233 ++ForegroundInactive=161,169,177 ++ForegroundLink=29,153,243 ++ForegroundNegative=218,68,83 ++ForegroundNeutral=246,116,0 ++ForegroundNormal=0,0,0 ++ForegroundPositive=39,174,96 ++ForegroundVisited=155,89,182 ++ ++[Colors:View] ++BackgroundAlternate=45,45,45 ++BackgroundNormal=45,45,45 ++DecorationFocus=61,174,233 ++DecorationHover=61,174,233 ++ForegroundActive=61,174,233 ++ForegroundInactive=161,169,177 ++ForegroundLink=29,153,243 ++ForegroundNegative=218,68,83 ++ForegroundNeutral=246,116,0 ++ForegroundNormal=255,255,255 ++ForegroundPositive=39,174,96 ++ForegroundVisited=155,89,182 ++ ++[Colors:Window] ++BackgroundAlternate=53,53,53 ++BackgroundNormal=53,53,53 ++DecorationFocus=61,174,233 ++DecorationHover=61,174,233 ++ForegroundActive=61,174,233 ++ForegroundInactive=161,169,177 ++ForegroundLink=29,153,243 ++ForegroundNegative=218,68,83 ++ForegroundNeutral=246,116,0 ++ForegroundNormal=225,225,223 ++ForegroundPositive=39,174,96 ++ForegroundVisited=155,89,182 ++ ++[General] ++ColorScheme=BreezeDark ++Name=AdwaitaHighcontrastInverse ++shadeSortColumn=true ++ ++[KDE] ++contrast=4 ++ ++[WM] ++activeBackground=41,41,41 ++activeBlend=252,252,252 ++activeForeground=225,225,223 ++inactiveBackground=42,46,50 ++inactiveBlend=161,169,177 ++inactiveForeground=161,169,177 +diff --git a/src/color-schemes/CMakeLists.txt b/src/color-schemes/CMakeLists.txt +new file mode 100644 +index 0000000..e156bfa +--- /dev/null ++++ b/src/color-schemes/CMakeLists.txt +@@ -0,0 +1,4 @@ ++install(FILES Adwaita.colors DESTINATION ${CMAKE_INSTALL_DATADIR}/color-schemes/) ++install(FILES AdwaitaDark.colors DESTINATION ${CMAKE_INSTALL_DATADIR}/color-schemes/) ++install(FILES AdwaitaHighcontrast.colors DESTINATION ${CMAKE_INSTALL_DATADIR}/color-schemes/) ++install(FILES AdwaitaHighcontrastInverse.colors DESTINATION ${CMAKE_INSTALL_DATADIR}/color-schemes/) +diff --git a/src/common/gnomesettings.cpp b/src/common/gnomesettings.cpp +index 078b1a9..1be8d61 100644 +--- a/src/common/gnomesettings.cpp ++++ b/src/common/gnomesettings.cpp +@@ -256,6 +256,18 @@ GnomeSettings::TitlebarButtonsPlacement GnomeSettings::titlebarButtonPlacement() + return m_hintProvider->titlebarButtonPlacement(); + } + ++static QString colorScheme(bool useHighContrast, bool useDarkVariant) ++{ ++ QString colorScheme = QStringLiteral("/usr/share/color-schemes/"); ++ if (useHighContrast) { ++ colorScheme += useDarkVariant ? QStringLiteral("AdwaitaHighcontrastInverse.colors") : QStringLiteral("AdwaitaHighcontrast.colors"); ++ } else { ++ colorScheme += useDarkVariant ? QStringLiteral("AdwaitaDark.colors") : QStringLiteral("Adwaita.colors"); ++ } ++ ++ return colorScheme; ++} ++ + void GnomeSettings::loadPalette() + { + if (useGtkThemeHighContrastVariant()) { +@@ -264,6 +276,8 @@ void GnomeSettings::loadPalette() + } else { + m_palette = new QPalette(Adwaita::Colors::palette(useGtkThemeDarkVariant() ? Adwaita::ColorVariant::AdwaitaDark : Adwaita::ColorVariant::Adwaita)); + } ++ ++ qApp->setProperty("KDE_COLOR_SCHEME_PATH", colorScheme(useGtkThemeHighContrastVariant(), useGtkThemeDarkVariant())); + } + + void GnomeSettings::onCursorBlinkTimeChanged() diff --git a/qgnomeplatform.spec b/qgnomeplatform.spec index fb0c461..7dd7258 100644 --- a/qgnomeplatform.spec +++ b/qgnomeplatform.spec @@ -1,6 +1,6 @@ Name: qgnomeplatform Version: 0.9.0 -Release: 9%{?dist} +Release: 10%{?dist} Summary: Qt Platform Theme aimed to accommodate Gnome settings License: LGPL-2.0-or-later @@ -9,6 +9,7 @@ Source0: https://github.com/FedoraQt/QGnomePlatform/archive/%{version}/QG # Upstream patches Patch0: qgnomeplatform-fix-window-content-geometry-for-qt5-when-shadows-are-enabled.patch +Patch1: qgnomeplatform-add-support-for-kcolorscheme-using-adwaita-like-color-schemes.patch Patch50: qgnomeplatform-use-more-updated-window-states-value.patch @@ -94,6 +95,7 @@ modifying them - making them fit into the environment as well as possible. %files qt5 %doc README.md %license LICENSE +%{_datadir}/color-schemes/*.colors %{_qt5_libdir}/libqgnomeplatform.so %{_qt5_plugindir}/platformthemes/libqgnomeplatformtheme.so %{_qt5_plugindir}/wayland-decoration-client/libqgnomeplatformdecoration.so @@ -106,6 +108,9 @@ modifying them - making them fit into the environment as well as possible. %{_qt6_plugindir}/wayland-decoration-client/libqgnomeplatformdecoration.so %changelog +* Fri Mar 10 2023 Jan Grulich - 0.9.0-10 +- Add support for KColorScheme using Adwaita-like color schemes + * Tue Jan 31 2023 Jan Grulich - 0.9.0-9 - migrated to SPDX license