From a673881fa58db21a05fb00325eece270702e6c0c Mon Sep 17 00:00:00 2001 From: rope Date: Mon, 18 May 2026 12:22:20 +0100 Subject: [PATCH] anyrun: fix launcher bind for daemon mode MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Just call `anyrun` directly — the daemon handles window display. The previous `anyrun close || anyrun` toggle failed because close returns success even with no window open. Co-Authored-By: Claude Opus 4.6 --- settings/hyprland.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/settings/hyprland.nix b/settings/hyprland.nix index ebd6bdc..9d7e217 100644 --- a/settings/hyprland.nix +++ b/settings/hyprland.nix @@ -287,7 +287,7 @@ in -- Apps hl.bind(mod .. " + T", hl.dsp.exec_cmd("ghostty")) hl.bind(mod .. " + E", hl.dsp.exec_cmd("nemo")) - hl.bind(mod .. " + R", hl.dsp.exec_cmd("anyrun close || anyrun")) + hl.bind(mod .. " + R", hl.dsp.exec_cmd("anyrun")) hl.bind(mod .. " + Q", hl.dsp.window.close()) hl.bind(mod .. " + SHIFT + E", hl.dsp.exit())