desktop/niri: experimental refactor

Signed-off-by: unexplrd <unexplrd@linerds.us>
This commit is contained in:
2025-04-28 16:53:28 +03:00
parent 9bee43fc50
commit 8c9ab14a76
5 changed files with 620 additions and 593 deletions

View File

@ -0,0 +1,23 @@
{
config,
mkDefault,
}: {
enable = true;
settings = {
main = {
terminal = "$TERMINAL -e";
fields = "filename,name,generic,keywords,categories,exec";
dpi-aware = false;
width = 20;
horizontal-pad = 12;
vertical-pad = 12;
show-actions = true;
match-mode = "fuzzy";
icon-theme = config.dconf.settings."org/gnome/desktop/interface".icon-theme;
};
border = mkDefault {
width = 3;
radius = 12;
};
};
}