Claude Desktop 1.569.0 (patch release 9)
This release provides Claude Desktop version 1.569.0 pre-patched for Linux.
Installation Options
Arch Linux (AUR)
yay -S claude-desktop-binDebian/Ubuntu (APT Repository — recommended)
curl -fsSL https://patrickjaja.github.io/claude-desktop-bin/install.sh | sudo bash
sudo apt install claude-desktop-binDebian/Ubuntu (manual .deb)
# x86_64
sudo apt install ./claude-desktop-bin_1.569.0-9_amd64.deb
# ARM64
sudo apt install ./claude-desktop-bin_1.569.0-9_arm64.debFedora/RHEL (RPM Repository — recommended)
curl -fsSL https://patrickjaja.github.io/claude-desktop-bin/install-rpm.sh | sudo bash
sudo dnf install claude-desktop-binFedora/RHEL (manual .rpm)
# x86_64
sudo dnf install ./claude-desktop-bin-1.569.0-9.x86_64.rpm
# ARM64
sudo dnf install ./claude-desktop-bin-1.569.0-9.aarch64.rpmNixOS / Nix
nix run github:patrickjaja/claude-desktop-binAppImage (Any Distro)
# x86_64
chmod +x Claude_Desktop-1.569.0-x86_64.AppImage
./Claude_Desktop-1.569.0-x86_64.AppImage
# ARM64
chmod +x Claude_Desktop-1.569.0-aarch64.AppImage
./Claude_Desktop-1.569.0-aarch64.AppImageUpdate existing AppImage (delta download — only changed blocks):
appimageupdatetool Claude_Desktop-*-x86_64.AppImage # Or from within the AppImage: ./Claude_Desktop-*-x86_64.AppImage --appimage-update
Checksums
| File | SHA256 |
|---|---|
| Tarball | df5c5dd9cf492f4fae756550e952912c56b2abe49b3465f864885cf1dc15466d
|
| AppImage (x86_64) | ea636998cbcc26c7ea3fe63d487a0b353fac39db1ccd8f8589a15ed841442dca
|
| AppImage (aarch64) | 661d9e7e0326bc2b9cd330e9c818bcf1bbd8dae6acd324ee7034c98e15773b8e
|
| Debian (amd64) | 998cda86b9fb62dc9732d4b6ea59ccbba010f84f607f602120d2e6d7917036e5
|
| Debian (arm64) | f84b88719e95281c9c2da5641174814f9e2f304ea8da91dce3fcb8ea77e85e29
|
| RPM (x86_64) | aa056968801138d715006b4da815d0e60457b65b348fc555814cb44fd97162c0
|
| RPM (aarch64) | d3f284c433fe86e4818ff61190ce7f47cdd85d6c959cf60b68bac2e7a41b9ca1
|
Changes since last release
Fixed
- fix_quick_entry_ready_wayland.py (new): Quick Entry overlay never appeared on native Wayland even though the global shortcut fired correctly. Root cause: Electron's
ready-to-showevent never fires for transparent frameless BrowserWindows on Wayland, and Claude's code awaits it indefinitely. Fix adds a 200msPromise.racetimeout so the window proceeds to show.
Added
- scripts/build-fedora-local.sh: Local build script for Fedora — downloads the latest exe, applies patches, and builds an installable RPM.
- wayland.md: Troubleshooting guide for stale kglobalaccel entries that can block global shortcut registration on KDE Wayland.
Notes
- Electron's native
GlobalShortcutsPortal(--enable-features=GlobalShortcutsPortal) works correctly on KDE Wayland — no external D-Bus helper needed. On first launch KDE shows an approval dialog; the permission persists inkglobalshortcutsrcacross restarts.