added execptions for windows

This commit is contained in:
Nickiel12 2024-08-10 17:08:48 -07:00
parent c724b1ea33
commit b4d50ea4e8
2 changed files with 15 additions and 0 deletions

View file

@ -14,6 +14,7 @@ in
imports = [
../ewwbar
./window_rules.nix
./keybinds.nix
./displays.nix
];

View file

@ -0,0 +1,14 @@
{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)"
];
};
}