add wofi and grimslurp or whatever its called man

This commit is contained in:
insects 2024-08-11 00:45:16 +02:00
parent c5ed051714
commit 3ac822bdf5
4 changed files with 109 additions and 6 deletions

View file

@ -5,6 +5,7 @@
./kitty.nix
./gtk.nix
./mako.nix
./wofi.nix
];
home.packages = with pkgs; [

View file

@ -0,0 +1,18 @@
{ config, lib, pkgs, ... }: {
programs.wofi = {
enable = true;
settings = {
allow_images = true;
insensitive = true;
run-always_parse_args = true;
run-cache_file = "/dev/null";
run-exec_search = true;
matching = "multi-contains";
};
style = ''
#window {
box-shadow: 5px 5px 5px black;
}
'';
};
}