add wofi and grimslurp or whatever its called man
This commit is contained in:
parent
c5ed051714
commit
3ac822bdf5
4 changed files with 109 additions and 6 deletions
|
@ -5,6 +5,7 @@
|
|||
./kitty.nix
|
||||
./gtk.nix
|
||||
./mako.nix
|
||||
./wofi.nix
|
||||
];
|
||||
|
||||
home.packages = with pkgs; [
|
||||
|
|
18
home/common/desktop/wofi.nix
Normal file
18
home/common/desktop/wofi.nix
Normal 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;
|
||||
}
|
||||
'';
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue