20 lines
352 B
Nix
20 lines
352 B
Nix
{ pkgs, impurity, ... }: {
|
|
programs.wofi = {
|
|
enable = true;
|
|
|
|
settings = {
|
|
mode = "drun";
|
|
style = "${impurity.link ./style.css}";
|
|
prompt = "";
|
|
|
|
insensitive = true;
|
|
allowImages = true;
|
|
hideScroll = true;
|
|
noActions = true;
|
|
exec_search = true;
|
|
|
|
width = 500;
|
|
height = 450;
|
|
};
|
|
};
|
|
}
|