Skip to content

Releases: iconidentify/chonkstep

ChonkStep 0.5.0 preview — Mac mode, live Spaces and capture

Choose a tag to compare

@github-actions github-actions released this 11 Sep 03:19
bb91618

ChonkStep 0.5.0 brings Mac keyboard mode and live Spaces previews to Linux.

  • Command shortcuts across native and XWayland apps, including terminal copy/paste.
  • Independent Spaces per display, with live thumbnails showing actual windows and positions.
  • Command-Shift-5 capture controls; saved screenshots open in imv and recordings in Omacut.
  • Improved frame pacing, asynchronous capture, and GPU pipeline diagnostics.
  • Reusable 1080p demo tooling with screenshots, captioned videos, and frame verification.

Validated with 315 local E2E tests, 2,107 Rust tests, 93 harness tests, and 24 native NVIDIA checks at 4K/144 Hz. Native checks include three live mode-toggle cycles, clipboard transfer/persistence, terminal shortcuts, live Spaces pixels, fullscreen restore, screenshot export into imv, and recording export into Omacut. Another 49 targeted workflows passed against the exact release executable. See the attached validation report for executable identities and test scope.

Mac mode is optional. Overlay scanout and broader primary-plane acceptance remain off by default. This follows the existing preview release channel; the linked guides document remaining macOS parity and hardware limits.

Spaces walkthrough · Capture walkthrough · Release notes · Repeatable demos

Live Spaces previews

Capture controls


Native Arch packages for ChonkStep 0.5.0 while AUR account registration is unavailable.

See the ChonkStep 0.5.0 release notes for changes, validation and known limitations.

The LCOS workflow also attaches an amd64 X11 package and its checksum
to this release. See LCOS installation
for download and verification instructions.

Install on x86-64 or ARM64/AArch64 Arch with:

chonkstep_dir="$(mktemp -d)"
chonkstep_arch="$(uname -m)"
chonkstep_pkg="chonkstep-0.5.0-1-$chonkstep_arch.pkg.tar.zst"
curl -fL -o "$chonkstep_dir/$chonkstep_pkg"   "https://github.com/iconidentify/chonkstep/releases/download/preview-v0.5.0/$chonkstep_pkg"
curl -fL -o "$chonkstep_dir/SHA256SUMS"   "https://github.com/iconidentify/chonkstep/releases/download/preview-v0.5.0/SHA256SUMS"
(cd "$chonkstep_dir" && sha256sum --ignore-missing --check SHA256SUMS)
sudo pacman -U "$chonkstep_dir/$chonkstep_pkg"
omarchy install desktop-chonkstep

Downloading 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.yml

Each 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.5.0-1-$chonkstep_arch.pkg.tar.zst"
curl -fL -o "$chonkstep_dir/$chonkstep_debug_pkg"   "https://github.com/iconidentify/chonkstep/releases/download/preview-v0.5.0/$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.5.0 tag will also publish the
source recipe to the AUR.

ChonkStep 0.4.4 preview packages (r1)

Pre-release

Choose a tag to compare

@github-actions github-actions released this 08 Sep 16:45
c7dad60

Native Arch packages for ChonkStep 0.4.4 while AUR account registration is unavailable.

See the ChonkStep 0.4.4 release notes for changes, validation and known limitations.

The LCOS workflow also attaches an amd64 X11 package and its checksum
to this release. See LCOS installation
for download and verification instructions.

Install on x86-64 or ARM64/AArch64 Arch with:

chonkstep_dir="$(mktemp -d)"
chonkstep_arch="$(uname -m)"
chonkstep_pkg="chonkstep-0.4.4-1-$chonkstep_arch.pkg.tar.zst"
curl -fL -o "$chonkstep_dir/$chonkstep_pkg"   "https://github.com/iconidentify/chonkstep/releases/download/preview-v0.4.4/$chonkstep_pkg"
curl -fL -o "$chonkstep_dir/SHA256SUMS"   "https://github.com/iconidentify/chonkstep/releases/download/preview-v0.4.4/SHA256SUMS"
(cd "$chonkstep_dir" && sha256sum --ignore-missing --check SHA256SUMS)
sudo pacman -U "$chonkstep_dir/$chonkstep_pkg"
omarchy install desktop-chonkstep

Downloading 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.yml

Each 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.4-1-$chonkstep_arch.pkg.tar.zst"
curl -fL -o "$chonkstep_dir/$chonkstep_debug_pkg"   "https://github.com/iconidentify/chonkstep/releases/download/preview-v0.4.4/$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.4 tag will also publish the
source recipe to the AUR.

ChonkStep 0.4.3 preview packages (r1)

Pre-release

Choose a tag to compare

@github-actions github-actions released this 08 Sep 01:44
b9e5fa6

Native 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-chonkstep

Downloading 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.yml

Each 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.

ChonkStep 0.4.2 preview packages (r1)

Pre-release

Choose a tag to compare

@github-actions github-actions released this 07 Sep 22:44
6e7bdd0

Native Arch packages for ChonkStep 0.4.2 while AUR account registration is unavailable.

See the ChonkStep 0.4.2 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.2-1-$chonkstep_arch.pkg.tar.zst"
curl -fL -o "$chonkstep_dir/$chonkstep_pkg"   "https://github.com/iconidentify/chonkstep/releases/download/preview-v0.4.2/$chonkstep_pkg"
curl -fL -o "$chonkstep_dir/SHA256SUMS"   "https://github.com/iconidentify/chonkstep/releases/download/preview-v0.4.2/SHA256SUMS"
(cd "$chonkstep_dir" && sha256sum --ignore-missing --check SHA256SUMS)
sudo pacman -U "$chonkstep_dir/$chonkstep_pkg"
omarchy install desktop-chonkstep

Downloading 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.yml

Each 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.2-1-$chonkstep_arch.pkg.tar.zst"
curl -fL -o "$chonkstep_dir/$chonkstep_debug_pkg"   "https://github.com/iconidentify/chonkstep/releases/download/preview-v0.4.2/$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.2 tag will also publish the
source recipe to the AUR.

ChonkStep 0.4.1 preview packages (r1)

Pre-release

Choose a tag to compare

@github-actions github-actions released this 07 Sep 20:31
6e197b8

Native Arch packages for ChonkStep 0.4.1 while AUR account registration is unavailable.

See the ChonkStep 0.4.1 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.1-1-$chonkstep_arch.pkg.tar.zst"
curl -fL -o "$chonkstep_dir/$chonkstep_pkg"   "https://github.com/iconidentify/chonkstep/releases/download/preview-v0.4.1/$chonkstep_pkg"
curl -fL -o "$chonkstep_dir/SHA256SUMS"   "https://github.com/iconidentify/chonkstep/releases/download/preview-v0.4.1/SHA256SUMS"
(cd "$chonkstep_dir" && sha256sum --ignore-missing --check SHA256SUMS)
sudo pacman -U "$chonkstep_dir/$chonkstep_pkg"
omarchy install desktop-chonkstep

Downloading 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.yml

Each 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.1-1-$chonkstep_arch.pkg.tar.zst"
curl -fL -o "$chonkstep_dir/$chonkstep_debug_pkg"   "https://github.com/iconidentify/chonkstep/releases/download/preview-v0.4.1/$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.1 tag will also publish the
source recipe to the AUR.

ChonkStep 0.4.0 preview packages (r1)

Pre-release

Choose a tag to compare

@github-actions github-actions released this 07 Sep 15:50
3c12310

Native Arch packages for ChonkStep 0.4.0 while AUR account registration is unavailable.

See the ChonkStep 0.4.0 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.0-1-$chonkstep_arch.pkg.tar.zst"
curl -fL -o "$chonkstep_dir/$chonkstep_pkg"   "https://github.com/iconidentify/chonkstep/releases/download/preview-v0.4.0/$chonkstep_pkg"
curl -fL -o "$chonkstep_dir/SHA256SUMS"   "https://github.com/iconidentify/chonkstep/releases/download/preview-v0.4.0/SHA256SUMS"
(cd "$chonkstep_dir" && sha256sum --ignore-missing --check SHA256SUMS)
sudo pacman -U "$chonkstep_dir/$chonkstep_pkg"
omarchy install desktop-chonkstep

Downloading 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

Each 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.0-1-$chonkstep_arch.pkg.tar.zst"
curl -fL -o "$chonkstep_dir/$chonkstep_debug_pkg"   "https://github.com/iconidentify/chonkstep/releases/download/preview-v0.4.0/$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.0 tag will also publish the
source recipe to the AUR.

ChonkStep 0.3.2 preview packages (r1)

Pre-release

Choose a tag to compare

@github-actions github-actions released this 06 Sep 18:17

Native Arch packages for ChonkStep 0.3.2 while AUR account registration is unavailable.

See the ChonkStep 0.3.2 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.3.2-1-$chonkstep_arch.pkg.tar.zst"
curl -fL -o "$chonkstep_dir/$chonkstep_pkg"   "https://github.com/iconidentify/chonkstep/releases/download/preview-v0.3.2/$chonkstep_pkg"
curl -fL -o "$chonkstep_dir/SHA256SUMS"   "https://github.com/iconidentify/chonkstep/releases/download/preview-v0.3.2/SHA256SUMS"
(cd "$chonkstep_dir" && sha256sum --ignore-missing --check SHA256SUMS)
sudo pacman -U "$chonkstep_dir/$chonkstep_pkg"
omarchy install desktop-chonkstep

Downloading 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

Each 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.3.2-1-$chonkstep_arch.pkg.tar.zst"
curl -fL -o "$chonkstep_dir/$chonkstep_debug_pkg"   "https://github.com/iconidentify/chonkstep/releases/download/preview-v0.3.2/$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.3.2 tag will also publish the
source recipe to the AUR.

ChonkStep 0.3.1 preview packages (r1)

Pre-release

Choose a tag to compare

@github-actions github-actions released this 06 Sep 09:34

Native Arch packages for ChonkStep 0.3.1 while AUR account registration is unavailable.

Install on x86-64 or ARM64/AArch64 Arch with:

chonkstep_dir="$(mktemp -d)"
chonkstep_arch="$(uname -m)"
chonkstep_pkg="chonkstep-0.3.1-1-$chonkstep_arch.pkg.tar.zst"
curl -fL -o "$chonkstep_dir/$chonkstep_pkg"   "https://github.com/iconidentify/chonkstep/releases/download/preview-v0.3.1/$chonkstep_pkg"
curl -fL -o "$chonkstep_dir/SHA256SUMS"   "https://github.com/iconidentify/chonkstep/releases/download/preview-v0.3.1/SHA256SUMS"
(cd "$chonkstep_dir" && sha256sum --ignore-missing --check SHA256SUMS)
sudo pacman -U "$chonkstep_dir/$chonkstep_pkg"
omarchy install desktop-chonkstep

Downloading 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

Each 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.3.1-1-$chonkstep_arch.pkg.tar.zst"
curl -fL -o "$chonkstep_dir/$chonkstep_debug_pkg"   "https://github.com/iconidentify/chonkstep/releases/download/preview-v0.3.1/$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.3.1 tag will also publish the
source recipe to the AUR.

ChonkStep 0.3.0 preview packages (r1)

Pre-release

Choose a tag to compare

@github-actions github-actions released this 05 Sep 17:33

Native Arch packages for ChonkStep 0.3.0 while AUR account registration is unavailable.

Install on x86-64 or ARM64/AArch64 Arch with:

chonkstep_dir="$(mktemp -d)"
chonkstep_arch="$(uname -m)"
chonkstep_pkg="chonkstep-0.3.0-1-$chonkstep_arch.pkg.tar.zst"
curl -fL -o "$chonkstep_dir/$chonkstep_pkg"   "https://github.com/iconidentify/chonkstep/releases/download/preview-v0.3.0/$chonkstep_pkg"
curl -fL -o "$chonkstep_dir/SHA256SUMS"   "https://github.com/iconidentify/chonkstep/releases/download/preview-v0.3.0/SHA256SUMS"
(cd "$chonkstep_dir" && sha256sum --ignore-missing --check SHA256SUMS)
sudo pacman -U "$chonkstep_dir/$chonkstep_pkg"
omarchy install desktop-chonkstep

Downloading 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

Each 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.3.0-1-$chonkstep_arch.pkg.tar.zst"
curl -fL -o "$chonkstep_dir/$chonkstep_debug_pkg"   "https://github.com/iconidentify/chonkstep/releases/download/preview-v0.3.0/$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.3.0 tag will also publish the
source recipe to the AUR.

ChonkStep 0.2.0 preview packages (r3)

Pre-release

Choose a tag to compare

@github-actions github-actions released this 04 Sep 09:39

ChonkStep 0.2.0 preview r3 is the recommended alpha build for Omarchy.

Why upgrade

  • Includes the IPC disconnect fix from r2. Closed hyprctl probes and event subscribers can no longer survive as permanently readable hangup descriptors and pin a CPU core. The reproduced failure dropped from 1,560 event-loop passes/sec and 99% of one core to normal idle behavior.
  • Moves text shaping to cosmic-text 0.19 and maintained harfrust.
  • Adds the complete nested desktop test to CI: Chromium and terminals, window geometry/input, Omarchy themes/menu/bar, lock, gamma/hyprsunset, Hyprland IPC, protocols, workspaces, session restore, and crash supervision.
  • Hardens the release pipeline with native x86_64/AArch64 builds, package inspection, pinned Actions, RustSec, strict Clippy/rustdoc, and GitHub provenance attestations.
  • Makes hardwareless Chromium testing reliable through its supported SwANGLE software GLES backend.

Install

chonkstep_dir="$(mktemp -d)"
chonkstep_arch="$(uname -m)"
chonkstep_pkg="chonkstep-0.2.0-3-$chonkstep_arch.pkg.tar.zst"

curl -fL -o "$chonkstep_dir/$chonkstep_pkg" \
  "https://github.com/iconidentify/chonkstep/releases/download/preview-v0.2.0-r3/$chonkstep_pkg"
curl -fL -o "$chonkstep_dir/SHA256SUMS" \
  "https://github.com/iconidentify/chonkstep/releases/download/preview-v0.2.0-r3/SHA256SUMS"
(cd "$chonkstep_dir" && sha256sum --ignore-missing --check SHA256SUMS)
sudo pacman -U "$chonkstep_dir/$chonkstep_pkg"
omarchy install desktop-chonkstep

Then reboot and choose chonkstep (Wayland) in SDDM. Hyprland remains installed.

Supported package architectures are x86_64 and aarch64. The AArch64 package is built natively against Arch Linux ARM; upstream Omarchy does not yet provide an official ARM64 installation.

Downloading before pacman -U is intentional on systems whose pacman configuration requires repository-style signatures for remote URLs. This preview uses the published checksum and GitHub build provenance:

gh attestation verify "$chonkstep_dir/$chonkstep_pkg" --repo iconidentify/chonkstep

This remains an alpha/prerelease distribution path.