mirror of
https://github.com/Nickiel12/nicks-nix-config.git
synced 2024-11-22 12:49:32 -08:00
added execptions for windows
This commit is contained in:
parent
c724b1ea33
commit
b4d50ea4e8
2 changed files with 15 additions and 0 deletions
|
@ -14,6 +14,7 @@ in
|
||||||
|
|
||||||
imports = [
|
imports = [
|
||||||
../ewwbar
|
../ewwbar
|
||||||
|
./window_rules.nix
|
||||||
./keybinds.nix
|
./keybinds.nix
|
||||||
./displays.nix
|
./displays.nix
|
||||||
];
|
];
|
||||||
|
|
14
modules/hyprland/window_rules.nix
Normal file
14
modules/hyprland/window_rules.nix
Normal 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)"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue