programs/anyrun: add configuration for additional plugins

This commit is contained in:
Anthony Rodriguez 2025-02-02 13:55:49 +01:00
parent 86f91b9ca9
commit 79a5f87dce
Signed by: nezia
SSH key fingerprint: SHA256:Ihfpl0rUpqDevYqnzSR34OYfVLbDNkBiUjs3CpX4ykA

View file

@ -2,7 +2,6 @@
lib, lib,
inputs, inputs,
config, config,
lib',
pkgs, pkgs,
... ...
}: let }: let
@ -30,6 +29,26 @@ in {
)), )),
) )
''; '';
".config/anyrun/symbols.ron".text = ''
Config(
prefix: ":s",
symbols: {
"shrug": "¯\\_()_/¯",
},
max_entries: 5,
)
'';
".config/anyrun/shell.ron".text = ''
Config(
prefix: ">"
)
'';
".config/anyrun/randr.ron".text = ''
Config(
prefi: ":dp",
max_entries: 5,
)
'';
".config/anyrun/style.css".source = ./style.css; ".config/anyrun/style.css".source = ./style.css;
}; };
}; };