Claude Desktop 1.1.6679 (patch release 3)
This release provides Claude Desktop version 1.1.6679 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)
sudo apt install ./claude-desktop-bin_1.1.6679-3_amd64.debFedora/RHEL (manual .rpm)
sudo dnf install ./claude-desktop-bin-1.1.6679-1.x86_64.rpmNixOS / Nix
nix run github:patrickjaja/claude-desktop-binAppImage (Any Distro)
chmod +x Claude_Desktop-1.1.6679-x86_64.AppImage
./Claude_Desktop-1.1.6679-x86_64.AppImageChecksums
| File | SHA256 |
|---|---|
| Tarball | f92edfb10925def51115fb4b86aff0b6941cb52aa731008f8096c5bab0ea13ca
|
| AppImage | 8b609ea7c48cea964d10486c0e6b9c8992fad471be1253fc3ff80a70ee951fae
|
| Debian | 5a43d306c5c45792daf936c3f70cdafb60625deef5493574c9b4fa405f4dbdd2
|
| RPM | 1b3154c9a90d13ad1e383b778477d46797fe1c565a44d5027a83be21cc0fa6d3
|
Changes since last release
Fixed
- fix_dock_bounce.py — Complete rewrite to actually fix taskbar flashing on Wayland (#10). The previous patch was a no-op because
dockBounceEnableddefaults tofalse—flashFrame()was never being called. The real causes areapp.focus({steal:true})(Electron docs: "may result in a flashing app icon on Wayland") andBrowserWindow.focus()on non-focused windows triggeringxdg_activation_v1requests that KWin translates to demands-attention. The new patch:- Injects early monkey-patches: no-op
flashFrame, stripstealfromapp.focus(), guardBrowserWindow.focus()to skip when window is invisible - Removes inline
app.focus({steal:!0})calls - Early-returns from
requestUserAttention()on Linux
- Injects early monkey-patches: no-op