This commit is contained in:
Matt Nish-Lapidus 2025-03-18 11:20:39 -04:00
parent f7777a492b
commit 5e59a054e5
2 changed files with 19 additions and 15 deletions

View file

@ -71,13 +71,13 @@ in
width = 2560;
height = 1600;
};
background-color = "#000000";
background-color = strPalette.normal.background;
scale = 1;
variable-refresh-rate = true;
};
"HDMI-A-1" = {
background-color = "#000000";
background-color = strPalette.normal.background;
scale = 1;
};
@ -86,7 +86,7 @@ in
width = 3840;
height = 2160;
};
background-color = "#000000";
background-color = strPalette.normal.background;
scale = 1;
};
};
@ -130,10 +130,9 @@ in
focus-ring = {
enable = true;
active.color =
with pkgs.rice.colorPalette.normal.border;
active.color = with pkgs.rice.colorPalette.normal.border;
"rgba(${toString r} ${toString g} ${toString b} ${toString a})";
width = 2;
width = pkgs.rice.border-width;
};
border = {
@ -141,13 +140,17 @@ in
inactive = {
gradient = {
from = "#333333";
to = "#000000";
to = "#111111";
angle = 180;
in' = "srgb-linear";
};
};
active.color = "#000";
width = 2;
width = pkgs.rice.border-width + 1;
};
shadow = {
enable = true;
};
};