From 80f135638f266ffd9f3d50a0126541d1707d5386 Mon Sep 17 00:00:00 2001 From: ver4a Date: Fri, 20 Feb 2026 09:58:50 +0100 Subject: [PATCH 1/2] fix: restore custom prompt Removing the bash-color-prompt package removed the customized prompt, the default prompt will now stay in place, and the custom will load after. --- containers/build-scripts/kde.bash | 3 --- 1 file changed, 3 deletions(-) diff --git a/containers/build-scripts/kde.bash b/containers/build-scripts/kde.bash index 7d87eaf..b6fd412 100644 --- a/containers/build-scripts/kde.bash +++ b/containers/build-scripts/kde.bash @@ -18,9 +18,6 @@ PKGS_NTSYNC="ntsync-autoload" # Add packages dnf5 -y install --allowerasing ${PKGS_CODECS} ${PKGS_UTILS} ${PKGS_GENERAL} ${PKGS_DEFAULT_EDITOR} ${PKGS_NTSYNC} -# Remove default color prompt (is replaced with a custom one) -dnf5 -y remove bash-color-prompt - # Apply configuration # fix-up kconfig path sed -i "/SCX_FLAGS=/ s/$/ --kconfig \/usr\/lib\/modules\/$(rpm -qa kernel | sed 's/kernel-//g')\/config/" /etc/default/scx From e57c27451167edaeea06cf811d3f6efe952d9a7e Mon Sep 17 00:00:00 2001 From: ver4a Date: Fri, 20 Feb 2026 10:18:26 +0100 Subject: [PATCH 2/2] Revert "build: move configuration after build scripts" This change broke scx config generation. This reverts commit 3ec2883d7bab58d8056af675ae694420d7123ba3. --- containers/Dockerfile.kde | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/containers/Dockerfile.kde b/containers/Dockerfile.kde index 376383b..e61bf11 100644 --- a/containers/Dockerfile.kde +++ b/containers/Dockerfile.kde @@ -35,13 +35,13 @@ COPY --from=scx-build /build/scx/services/scx.service /usr/lib/systemd/system/sc # dnf configuration has to be in effect during build COPY etc/dnf /etc/dnf +# Apply configuration +COPY etc /etc +COPY usr /usr + # Run build logic COPY build-scripts/kde.bash /tmp/kde.bash RUN chmod +x /tmp/kde.bash RUN /tmp/kde.bash -# Apply configuration -COPY etc /etc -COPY usr /usr - LABEL quay.expires-after=""