github patrickjaja/claude-desktop-bin v1.1.6679-6
Claude Desktop 1.1.6679 (patch release 6)

4 hours ago

Claude Desktop 1.1.6679 (patch release 6)

This release provides Claude Desktop version 1.1.6679 pre-patched for Linux.

Installation Options

Arch Linux (AUR)

yay -S claude-desktop-bin

Debian/Ubuntu (APT Repository — recommended)

curl -fsSL https://patrickjaja.github.io/claude-desktop-bin/install.sh | sudo bash
sudo apt install claude-desktop-bin

Debian/Ubuntu (manual .deb)

sudo apt install ./claude-desktop-bin_1.1.6679-6_amd64.deb

Fedora/RHEL (manual .rpm)

sudo dnf install ./claude-desktop-bin-1.1.6679-1.x86_64.rpm

NixOS / Nix

nix run github:patrickjaja/claude-desktop-bin

AppImage (Any Distro)

chmod +x Claude_Desktop-1.1.6679-x86_64.AppImage
./Claude_Desktop-1.1.6679-x86_64.AppImage

Checksums

File SHA256
Tarball 1eac38aa1c5a4100becaf5bb8fca038589fa2126717d338e1f3217c188484bf0
AppImage 60e7469553a475b08797c55c80fde2dba3cd2d2067179c2cbf3c0328ba0d3f0c
Debian 0033ad43bc2a1836ca9c5f4c307c69281288e42a4ae03c4452f2d216ed0d1acd
RPM 24ccf1d07227803a829bb7866e601db99fbccf8c7a3463074cc682148ce61b69

Changes since last release

Fixed

  • fix_dock_bounce.py — Comprehensive fix for taskbar attention-stealing on KDE Plasma and other Linux DEs (#10). Previous approach only patched BrowserWindow.prototype methods but missed WebContents.focus() which bypasses those overrides entirely and triggers gtk_window_present()/XSetInputFocus() at the C++ level, causing _NET_WM_STATE_DEMANDS_ATTENTION. New approach:
    • Layer 1 (prevent): No-op flashFrame(true)/app.focus(), guard BrowserWindow.focus()/moveTop(), use showInactive() instead of show() when app not focused, enable backgroundThrottling on Linux, early-return requestUserAttention(), intercept WebContents.focus() via web-contents-created event (the key fix — only allow when parent window is focused)
    • Layer 2 (cure): On every window blur, actively call the real flashFrame(false) on a 500ms interval to continuously clear demands-attention state set by Chromium internals. Stops on focus.

Links

Don't miss a new claude-desktop-bin release

NewReleases is sending notifications on new releases.