From a2a0c15c3d00f28563add7278271294441611465 Mon Sep 17 00:00:00 2001 From: "Hermes (debby)" Date: Sat, 20 Jun 2026 11:40:55 +0200 Subject: [PATCH] fix(desktop): match Exec path to installed binary (drop .sh suffix) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Build installs /usr/local/bin/clawdie-join-hive (no .sh). Desktop Exec had the .sh suffix — launcher would fail silently. One-character fix: drop .sh from Exec line. --- live/operator-session/clawdie-join-hive.desktop | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/live/operator-session/clawdie-join-hive.desktop b/live/operator-session/clawdie-join-hive.desktop index 23c545a2..26732844 100644 --- a/live/operator-session/clawdie-join-hive.desktop +++ b/live/operator-session/clawdie-join-hive.desktop @@ -3,7 +3,7 @@ Type=Application Version=1.0 Name=Join Hive Comment=Register this machine as a Colibri agent -Exec=xfce4-terminal --title "Join Hive" --geometry=80x24 --command "/usr/local/bin/clawdie-join-hive.sh" +Exec=xfce4-terminal --title "Join Hive" --geometry=80x24 --command "/usr/local/bin/clawdie-join-hive" Icon=network-server Terminal=false Categories=System;Utility; -- 2.45.3