[Rofi] Adds focus-holding in Hyprland

This commit is contained in:
2025-05-19 12:04:34 -07:00
parent af07210253
commit a5ceae0912
3 changed files with 8 additions and 1 deletions

View File

@@ -27,7 +27,7 @@ let
raiderioClient = pkgs.fetchurl {
name = "raiderio-client";
url = "https://raider.io/client/download/linux";
sha256 = "0k665s5frs7pga38yjz38gszkn5gkxkfzqlq07x0bm4qjvbrjf7z";
sha256 = "1iny8zhp12x40mnxxr7p6kbyyvxf16373d2qa8idxs3hw5fz7gnx";
};
raiderioIcon = pkgs.fetchurl {
name = "raiderio-icon";

View File

@@ -8,4 +8,10 @@
source = ./config;
recursive = true;
};
wayland.windowManager.hyprland.settings.windowrulev2 = [
# Forces the Rofi window to hold focus so that it gets input even if
# something else opens or the mouse is outside the window.
"stayfocused, class:Rofi"
];
}