Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM docker.io/library/alpine:latest@sha256:25109184c71bdad752c8312a8623239686a9

COPY --from=ghcr.io/ublue-os/bluefin-wallpapers-gnome:latest@sha256:4a9b0b771a7e927308cf1240ad1b512b61f2a91954be799bc6e1b5045fea2942 / /out/bluefin/usr/share

RUN apk add just curl
RUN apk add just curl xz

# artwork repo points to ~/.local/share for metadata
RUN mkdir -p /out/bluefin/usr/share/backgrounds/bluefin && \
Expand All @@ -18,6 +18,11 @@ RUN curl -fsSLo - https://codeberg.org/fabiscafe/game-devices-udev/archive/0.25.
install -Dpm0644 -t /out/shared/usr/lib/udev/rules.d/ /tmp/game-devices-udev/*.rules && \
curl -fsSLo /out/shared/usr/lib/udev/rules.d/70-u2f.rules https://raw.githubusercontent.com/Yubico/libfido2/refs/heads/main/udev/70-u2f.rules

RUN install -d /out/shared/usr/share/fonts/AdwaitaMono && \
curl -fsSLo /tmp/AdwaitaMono.tar.xz https://github.com/ryanoasis/nerd-fonts/releases/download/v3.4.0/AdwaitaMono.tar.xz && \
tar -xJf /tmp/AdwaitaMono.tar.xz -C /out/shared/usr/share/fonts/AdwaitaMono && \
rm /tmp/AdwaitaMono.tar.xz
Comment on lines +21 to +24
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There's got to be an official way to get this font from GNOME itself?

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

gnome already provides adwaita fonts by default. the mono font even comes with nerd font icons built-in. except, the git branch icon doesn't render correctly.

we could just remove adwaita and jetbrains fonts from packages.sh to align with upstream. plus, maybe the git branch icon getting chopped should be a bug report to gnome?

see the stock silverblue 43 image below for reference:

Screenshot From 2026-04-30 14-51-13


FROM scratch AS ctx
COPY /system_files/shared /system_files/shared/
COPY /bluefin-branding/system_files /system_files/bluefin
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ clock-show-weekday=true
font-antialiasing="rgba"
font-name="Adwaita Sans 12"
document-font-name="Adwaita Sans 12"
monospace-font-name="JetBrains Mono 16"
monospace-font-name="AdwaitaMono Nerd Font Mono 13"
accent-color="slate"

[org.gnome.desktop.search-providers]
Expand Down
Loading