more styling for wofi

This commit is contained in:
insects 2024-08-13 17:13:57 +02:00
parent 43a4eb39f8
commit a42d6f0e59
2 changed files with 11 additions and 4 deletions

View file

@ -2,8 +2,8 @@
programs.wofi = {
enable = true;
settings = {
allow_images = true;
insensitive = true;
allow_markup = true;
run-always_parse_args = true;
run-cache_file = "/dev/null";
run-exec_search = true;
@ -11,7 +11,14 @@
};
style = ''
#window {
box-shadow: 5px 5px 5px black;
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;
}
'';
};

View file

@ -168,8 +168,8 @@
wofi = lib.getExe pkgs.wofi;
in
lib.optionals config.programs.wofi.enable [
"SUPER,Space,exec,${wofi} -S drun -W 25% -H 50%"
"SHIFTSUPER,Space,exec,${wofi} -S run"
"SUPER,Space,exec,${wofi} -S drun -W 20% -H 15%"
"SHIFTSUPER,Space,exec,${wofi} -S run -W 20% -H 15%"
]
);