qol(hyprland@modules): replaced runner with anyrun

This commit is contained in:
2025-10-25 12:27:04 +01:00
parent b21ed78484
commit b9b69e87bf
2 changed files with 43 additions and 2 deletions

View File

@@ -3,5 +3,46 @@ let
in
{
programs.wofi.enable = true;
programs.anyrun = {
enable = true;
config = {
x = {
fraction = 0.5;
};
y = {
fraction = 0.3;
};
width = {
fraction = 0.3;
};
hideIcons = false;
ignoreExclusiveZones = false;
layer = "overlay";
hidePluginInfo = false;
closeOnClick = false;
showResultsImmediately = false;
maxEntries = null;
plugins = [
"${pkgs.anyrun}/lib/libapplications.so"
"${pkgs.anyrun}/lib/libsymbols.so"
];
};
# Inline comments are supported for language injection into
# multi-line strings with Treesitter! (Depends on your editor)
extraCss = /* css */ ''
.some_class {
background: red;
}
'';
extraConfigFiles."some-plugin.ron".text = ''
Config(
// for any other plugin
// this file will be put in ~/.config/anyrun/some-plugin.ron
// refer to docs of xdg.configFile for available options
)
'';
};
}