From 554849bc811fbbba98ac2ce9e4cf04f1ac8867d4 Mon Sep 17 00:00:00 2001 From: Kyle Gospodnetich Date: Tue, 26 Sep 2023 17:42:53 -0700 Subject: [PATCH] feat: Add missing package for KDE color control (Except on Nvidia) --- Containerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Containerfile b/Containerfile index 196fa3d8..870e732d 100644 --- a/Containerfile +++ b/Containerfile @@ -102,6 +102,9 @@ RUN if grep -q "kinoite" <<< "${BASE_IMAGE_NAME}"; then \ --experimental \ --from repo=copr:copr.fedorainfracloud.org:kylegospo:gnome-vrr \ xorg-x11-server-Xwayland && \ + if grep -qv "nvidia" <<< "${IMAGE_NAME}"; then \ + rpm-ostree install colord-kde \ + ; fi && \ git clone https://github.com/maxiberta/kwin-system76-scheduler-integration.git --depth 1 /tmp/kwin-system76-scheduler-integration && \ git clone https://github.com/catsout/wallpaper-engine-kde-plugin.git --depth 1 /tmp/wallpaper-engine-kde-plugin && \ kpackagetool5 --type=KWin/Script --global --install /tmp/kwin-system76-scheduler-integration && \