Add wofi launcher

This commit is contained in:
ItsDrike 2024-06-10 19:19:30 +02:00
parent e20e63e57b
commit 6a85f6b61b
Signed by: ItsDrike
GPG key ID: FA2745890B7048C0
4 changed files with 78 additions and 0 deletions

View file

@ -0,0 +1,17 @@
_: {
programs.wofi = {
enable = true;
settings = {
width = "40%";
height = "30%";
show = "drun";
prompt = "Search";
allow_images = true;
allow_markup = true;
insensitive = true;
};
style = ''
${builtins.readFile ./style.css}
'';
};
}