2024-12-03 16:50:23 -05:00
|
|
|
{ pkgs, config, ... }:
|
|
|
|
{
|
|
|
|
config.home.niri.settings.theme = pkgs.writeText "theme" ''
|
|
|
|
prefer-no-csd
|
2024-12-05 03:59:12 -05:00
|
|
|
|
2024-12-03 16:50:23 -05:00
|
|
|
layout {
|
|
|
|
border {
|
|
|
|
width 3
|
|
|
|
active-color "#${config.look.colors.prime}"
|
|
|
|
inactive-color "#${config.look.colors.split}"
|
|
|
|
}
|
2024-12-05 14:40:12 -05:00
|
|
|
|
|
|
|
focus-ring {
|
|
|
|
off
|
|
|
|
}
|
|
|
|
|
|
|
|
gaps 7
|
|
|
|
center-focused-column "never"
|
|
|
|
default-column-width { proportion 0.5; }
|
|
|
|
|
|
|
|
preset-column-widths {
|
|
|
|
proportion 0.33333
|
|
|
|
proportion 0.5
|
|
|
|
proportion 0.66667
|
|
|
|
}
|
2024-12-03 16:50:23 -05:00
|
|
|
}
|
|
|
|
'';
|
|
|
|
}
|