home/programs/niri: fix settings not under correct attribute

This commit is contained in:
Anthony Rodriguez 2024-10-08 15:50:08 +02:00
parent a1b577d4ce
commit 368135be31
Signed by: nezia
GPG key ID: EE3BE97C040A86CE

View file

@ -26,33 +26,33 @@ in {
center-focused-column = "always"; center-focused-column = "always";
always-center-single-column = true; always-center-single-column = true;
}; };
};
window-rules = [ window-rules = [
{ {
draw-border-with-background = false; draw-border-with-background = false;
geometry-corner-radius = let geometry-corner-radius = let
r = 8.0; r = 8.0;
in { in {
top-left = r; top-left = r;
top-right = r; top-right = r;
bottom-left = r; bottom-left = r;
bottom-right = r; bottom-right = r;
}; };
clip-to-geometry = true; clip-to-geometry = true;
} }
{ {
matches = [ matches = [
{app-id = "foot";} {app-id = "foot";}
]; ];
default-column-width = {proportion = 0.5;}; default-column-width = {proportion = 0.5;};
} }
]; ];
environment = { environment = {
"NIXOS_OZONE_WL" = "1"; "NIXOS_OZONE_WL" = "1";
"DISPLAY" = ":0"; "DISPLAY" = ":0";
"_JAVA_AWT_WM_NONREPARENTING" = "1"; # https://wiki.archlinux.org/title/Sway#Java_applications "_JAVA_AWT_WM_NONREPARENTING" = "1"; # https://wiki.archlinux.org/title/Sway#Java_applications
};
}; };
}; };