programs/anyrun: add configuration for additional plugins

This commit is contained in:
Anthony Rodriguez 2025-02-02 13:55:49 +01:00
parent 9506714dd0
commit 1f4f83a641
Signed by: nezia
SSH key fingerprint: SHA256:Ihfpl0rUpqDevYqnzSR34OYfVLbDNkBiUjs3CpX4ykA

View file

@ -2,7 +2,6 @@
lib,
inputs,
config,
lib',
pkgs,
...
}: 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;
};
};