Skip to content
Open
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
2 changes: 1 addition & 1 deletion .github/actions/config/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ runs:
IMAGE_PATH="almalinuxorg"
IMAGE_NAME="atomic-desktop"
PLATFORMS="arm64,amd64,amd64/v2"
VARIANTS="gnome,kde"
VARIANTS="gnome,kde,cosmic"

echo "REGISTRY=${REGISTRY}" >> $GITHUB_OUTPUT
echo "REGISTRY_USER=${REGISTRY_USER}" >> $GITHUB_OUTPUT
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/build-iso.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ on:
options:
- 'gnome'
- 'kde'
- 'cosmic'
- 'ALL'

concurrency:
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/reusable-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,9 @@ jobs:
- Systemd: <relver:systemd>
- Glibc: <relver:glibc>
- Bootc: <relver:bootc>
- ${{ inputs.variant == 'gnome' && 'GNOME: <version:gdm>' || 'KDE: <version:plasma-desktop>' }}
- ${{ inputs.variant == 'gnome' && 'GNOME: <version:gdm>'
|| inputs.variant == 'kde' && 'KDE: <version:plasma-desktop>'
|| inputs.variant == 'cosmic' && 'COSMIC: <version:cosmic-epoch>' }}
KMS_KEY_ALIAS: ${{ inputs.KMS_KEY_ALIAS }}
AWS_REGION: ${{ inputs.AWS_REGION }}
generate-sbom: true
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,12 @@ to get you started. Create your own Atomic AlmaLinux respin in minutes!
Download and install from the ISOs:
* [atomic-desktop-gnome-amd64.iso](https://almalinux-atomic.s3-accelerate.dualstack.amazonaws.com/atomic-desktop/latest/atomic-desktop-gnome-amd64.iso)
* [atomic-desktop-kde-amd64.iso](https://almalinux-atomic.s3-accelerate.dualstack.amazonaws.com/atomic-desktop/latest/atomic-desktop-kde-amd64.iso)
* [atomic-desktop-cosmic-amd64.iso](https://almalinux-atomic.s3-accelerate.dualstack.amazonaws.com/atomic-desktop/latest/atomic-desktop-cosmic-amd64.iso)

Bootc images:
* `quay.io/almalinuxorg/atomic-desktop-gnome`
* `quay.io/almalinuxorg/atomic-desktop-kde`
* `quay.io/almalinuxorg/atomic-desktop-cosmic`
* Cosign public key: [cosign.pub](/cosign.pub)

# Contributing
Expand Down
33 changes: 25 additions & 8 deletions files/scripts/20-desktop.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,23 @@

set -xeuo pipefail

dnf install -y \
@core \
@fonts \
@guest-desktop-agents \
@hardware-support \
@input-methods \
@multimedia \
@networkmanager-submodules \
@print-client \
@standard

if [[ "${VARIANT}" == "gnome" ]]; then
# aarch64 doesn't have @workstation group
if [[ "${TARGETARCH}" == "arm64" ]]; then
dnf install -y \
@core \
@fonts \
@gnome-desktop \
@guest-desktop-agents \
@hardware-support \
@internet-browser \
@multimedia \
@networkmanager-submodules \
@print-client \
@standard \
@workstation-product
else
dnf install -y \
Expand All @@ -31,6 +34,20 @@ elif [[ "${VARIANT}" == "kde" ]]; then

systemctl enable sddm

elif [[ "${VARIANT}" == "cosmic" ]]; then
# workaround: cosmic-greeter requires fprintd-pam but for aarch64 it's only in devel repo
if [[ "${TARGETARCH}" == "arm64" && ! $(dnf repoinfo devel -q | grep enabled) ]]; then
dnf install -y almalinux-release-devel
dnf config-manager --set-disabled devel
dnf install -y fprintd-pam --enablerepo=devel
fi

dnf copr enable -y "ligenix/enterprise-cosmic" "rhel+epel-10-$(uname -m)"
dnf install -y \
cosmic-desktop

systemctl enable cosmic-greeter

else
true

Expand Down
Loading