set up kde for enoko

This commit is contained in:
insects 2024-08-18 22:41:55 +02:00
parent a0be378e79
commit 50ae1f3d3f
10 changed files with 52 additions and 33 deletions

View file

@ -0,0 +1,25 @@
{ config, lib, pkgs, ... }: {
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;
}
'';
};
}