ChonkStep 0.4.3 preview packages (r1)
Pre-releaseNative Arch packages for ChonkStep 0.4.3 while AUR account registration is unavailable.
See the ChonkStep 0.4.3 release notes for changes, validation and known limitations.
Install on x86-64 or ARM64/AArch64 Arch with:
chonkstep_dir="$(mktemp -d)"
chonkstep_arch="$(uname -m)"
chonkstep_pkg="chonkstep-0.4.3-1-$chonkstep_arch.pkg.tar.zst"
curl -fL -o "$chonkstep_dir/$chonkstep_pkg" "https://github.com/iconidentify/chonkstep/releases/download/preview-v0.4.3/$chonkstep_pkg"
curl -fL -o "$chonkstep_dir/SHA256SUMS" "https://github.com/iconidentify/chonkstep/releases/download/preview-v0.4.3/SHA256SUMS"
(cd "$chonkstep_dir" && sha256sum --ignore-missing --check SHA256SUMS)
sudo pacman -U "$chonkstep_dir/$chonkstep_pkg"
omarchy install desktop-chonkstepDownloading first is required on systems whose pacman configuration
requires repository-style signatures for remote package URLs. This
preview path uses the checksum above and GitHub build provenance.
Supported package architectures are x86_64 and aarch64. The
AArch64 package is built natively against Arch Linux ARM; upstream
Omarchy itself does not yet provide an official ARM64 installation.
Verify a downloaded package's GitHub build provenance with:
gh attestation verify "$chonkstep_dir/$chonkstep_pkg" --repo iconidentify/chonkstep --signer-workflow iconidentify/chonkstep/.github/workflows/package.ymlEach architecture also has a chonkstep-debug- package. It is not
needed to run the desktop, and installing it changes nothing about
how the desktop behaves. It carries the debug symbols, so install it
before reporting a crash — without it every ChonkStep frame in a
coredump reads as ??, and Arch's debuginfod does not carry
symbols for packages installed this way:
chonkstep_debug_pkg="chonkstep-debug-0.4.3-1-$chonkstep_arch.pkg.tar.zst"
curl -fL -o "$chonkstep_dir/$chonkstep_debug_pkg" "https://github.com/iconidentify/chonkstep/releases/download/preview-v0.4.3/$chonkstep_debug_pkg"
sudo pacman -U "$chonkstep_dir/$chonkstep_debug_pkg"
coredumpctl gdb chonkstep-wayland # now shows file:line, not ??SHA256SUMS covers all four package files, and every one of them
carries GitHub build provenance. This is a prerelease distribution
path; the eventual stable v0.4.3 tag will also publish the
source recipe to the AUR.