From e55ffa21c241bfdef73dbc8e1503c66d56f64593 Mon Sep 17 00:00:00 2001 From: rope Date: Thu, 4 Jun 2026 14:21:38 +0100 Subject: [PATCH] quickshell: focus window on tray icon click for xembed-sni-proxy items XTest click forwarding doesn't work under Hyprland's XWayland, so fall back to Hyprland.dispatch focuswindow for menu-less tray items. Co-Authored-By: Claude Opus 4.6 --- settings/hyprland.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/settings/hyprland.nix b/settings/hyprland.nix index 1349fb5..a109d73 100644 --- a/settings/hyprland.nix +++ b/settings/hyprland.nix @@ -1203,6 +1203,9 @@ in }); } else { modelData.activate(); + if (!modelData.hasMenu && modelData.title) { + Hyprland.dispatch("focuswindow title:" + modelData.title); + } } } }