hypr: rules added

This commit is contained in:
kenji
2025-12-24 23:06:55 -06:00
parent 51419d6171
commit 22fc29f8f1
3 changed files with 11 additions and 1 deletions
+1
View File
@@ -3,6 +3,7 @@
./hypr/binds.nix
./hypr/general.nix
./hypr/exec.nix
./hypr/rules.nix
];
wayland.windowManager.hyprland.enable = true;
wayland.windowManager.hyprland.systemd.enable = false; # for UWSM support...
+9
View File
@@ -0,0 +1,9 @@
{
wayland.windowManager.hyprland.settings = {
windowrulev2 = [
"float, class:^(org\.hakase\..*)$"
"center, class:^(org\.hakase\..*)$"
"size 80% 70%, class:^(org\.hakase\..*)$" # Example using percentages
];
};
}
+1 -1
View File
@@ -1,5 +1,5 @@
{
imports = [
../../script/hakase-scripts.nix
../../scripts/hakase-scripts.nix
];
}