nix-config/home/common/desktop/wlr/wofi.nix
2024-08-21 14:29:24 +02:00

25 lines
614 B
Nix

{ config, lib, ... }: {
programs.wofi = {
enable = true;
settings = {
insensitive = true;
allow_markup = true;
run-always_parse_args = true;
run-cache_file = "/dev/null";
run-exec_search = true;
matching = "multi-contains";
};
style = ''
#window {
border: 1px solid ${config.lib.stylix.colors.withHashtag.base05};
font-family: ${config.fontProfiles.bitmap.family};
}
#input {
border-radius: 0;
border: 1px solid ${config.lib.stylix.colors.withHashtag.base05};
border-bottom: 0;
}
'';
};
}