nicks-nix-config/modules/hyprland/window_rules.nix
2024-08-10 17:08:48 -07:00

14 lines
309 B
Nix

{lib, pkgs, ...}:
{
wayland.windowManager.hyprland.settings = {
# See here for details
# https://wiki.hyprland.org/Configuring/Window-Rules/#syntax
# to see active window details:
# hyprctl clients
windowrulev2 = [
"float,class:(Rofi)"
"float,title:(dbeaver)"
];
};
}