Add Hyprland, attempt generalization

This commit is contained in:
Jimbo 2024-12-08 06:41:06 -05:00
parent 590430f296
commit a0cc623c4b
57 changed files with 634 additions and 385 deletions

View file

@ -0,0 +1,22 @@
{ config, ... }:
{
wayland.windowManager.hyprland.settings.plugin = {
hy3 = {
no_gaps_when_only = 0;
node_collapse_policy = 0;
group_inset = 5;
tabs = {
text_font = config.look.fonts.main;
text_height = 10;
height = 17;
padding = 0;
rounding = 0;
"col.active" = "rgba(${config.look.colors.prime}FF)";
"col.inactive" = "rgba(${config.look.colors.split}FF)";
"col.urgent" = "rgba(${config.look.colors.urgent}FF)";
"col.text.active" = "rgba(${config.look.colors.text}FF)";
"col.text.inactive" = "rgba(${config.look.colors.text}FF)";
};
};
};
}