Skip to content

Commit

Permalink
feat: Add that thing everyone keeps asking about
Browse files Browse the repository at this point in the history
  • Loading branch information
KyleGospo committed Aug 10, 2024
1 parent 2e6d5af commit 15cdf22
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
8 changes: 7 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
matrix:
base_image_flavor: [main]
base_name: [bazzite, bazzite-deck, bazzite-nvidia]
base_image_name: [kinoite, silverblue]
base_image_name: [kinoite, silverblue, budgie, cosmic]
target_image_flavor: [main, asus]
fedora_version: [40]
include:
Expand All @@ -85,6 +85,12 @@ jobs:
DESKTOP=""
if [[ "${{ matrix.base_image_name }}" == "silverblue" ]]; then
DESKTOP="-gnome"
elif [[ "${{ matrix.base_image_name }}" == "budgie" ]]; then
DESKTOP="-budgie"
echo "SOURCE_IMAGE=onyx-main" >> $GITHUB_ENV
elif [[ "${{ matrix.base_image_name }}" == "cosmic" ]]; then
DESKTOP="-cosmic"
echo "SOURCE_IMAGE=cosmic-silverblue" >> $GITHUB_ENV
fi
if [[ "${{ matrix.base_name }}" == "bazzite-deck" ]]; then
Expand Down
4 changes: 2 additions & 2 deletions Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -542,7 +542,7 @@ RUN --mount=type=cache,dst=/var/cache/rpm-ostree \
sed -i 's@\[Desktop Entry\]@\[Desktop Entry\]\nNoDisplay=true@g' /usr/share/applications/org.kde.konsole.desktop && \
rm -f /usr/share/kglobalaccel/org.kde.konsole.desktop && \
systemctl enable kde-sysmonitor-workaround.service \
; else \
; elif grep -q "silverblue" <<< "${BASE_IMAGE_NAME}"; then \
rpm-ostree override replace \
--experimental \
--from repo=copr:copr.fedorainfracloud.org:ublue-os:staging \
Expand Down Expand Up @@ -750,7 +750,7 @@ RUN --mount=type=cache,dst=/var/cache/rpm-ostree \
steamdeck-kde-presets-desktop && \
rpm-ostree install \
steamdeck-kde-presets \
; else \
; elif grep -q "silverblue" <<< "${BASE_IMAGE_NAME}"; then \
rpm-ostree install \
steamdeck-gnome-presets \
gnome-shell-extension-caribou-blocker \
Expand Down

0 comments on commit 15cdf22

Please sign in to comment.