1
0
mirror of https://github.com/nix-community/home-manager synced 2024-07-10 07:08:44 +02:00
home-manager/tests/modules/programs/bemenu/basic-configuration.nix

30 lines
860 B
Nix
Raw Normal View History

2023-11-29 08:23:23 +01:00
{
programs.bemenu = {
enable = true;
settings = {
line-height = 28;
prompt = "open";
ignorecase = true;
fb = "#1e1e2e";
ff = "#cdd6f4";
nb = "#1e1e2e";
nf = "#cdd6f4";
tb = "#1e1e2e";
hb = "#1e1e2e";
tf = "#f38ba8";
hf = "#f9e2af";
af = "#cdd6f4";
ab = "#1e1e2e";
width-factor = 0.3;
2023-11-29 08:23:23 +01:00
};
};
2024-03-06 08:42:05 +01:00
test.stubs.bemenu = { };
2023-11-29 08:23:23 +01:00
nmt.script = ''
assertFileExists home-path/etc/profile.d/hm-session-vars.sh
assertFileContains home-path/etc/profile.d/hm-session-vars.sh \
"export BEMENU_OPTS=\"'--ab' '#1e1e2e' '--af' '#cdd6f4' '--fb' '#1e1e2e' '--ff' '#cdd6f4' '--hb' '#1e1e2e' '--hf' '#f9e2af' '--ignorecase' '--line-height' '28' '--nb' '#1e1e2e' '--nf' '#cdd6f4' '--prompt' 'open' '--tb' '#1e1e2e' '--tf' '#f38ba8' '--width-factor' '0.300000'\""
2023-11-29 08:23:23 +01:00
'';
}