bemenu: allow floats in settings
For example, the CLI option --width-factor controls the width of the launcher and is set to a value between 0-1.
This commit is contained in:
parent
2d47379ad5
commit
3d0dc78e80
|
@ -15,7 +15,7 @@ in {
|
||||||
package = mkPackageOption pkgs "bemenu" { };
|
package = mkPackageOption pkgs "bemenu" { };
|
||||||
|
|
||||||
settings = mkOption {
|
settings = mkOption {
|
||||||
type = with types; attrsOf (oneOf [ str int bool ]);
|
type = with types; attrsOf (oneOf [ str number bool ]);
|
||||||
default = { };
|
default = { };
|
||||||
example = literalExpression ''
|
example = literalExpression ''
|
||||||
{
|
{
|
||||||
|
@ -32,6 +32,7 @@ in {
|
||||||
hf = "#f9e2af";
|
hf = "#f9e2af";
|
||||||
af = "#cdd6f4";
|
af = "#cdd6f4";
|
||||||
ab = "#1e1e2e";
|
ab = "#1e1e2e";
|
||||||
|
width-factor = 0.3;
|
||||||
}
|
}
|
||||||
'';
|
'';
|
||||||
description =
|
description =
|
||||||
|
|
|
@ -15,12 +15,13 @@
|
||||||
hf = "#f9e2af";
|
hf = "#f9e2af";
|
||||||
af = "#cdd6f4";
|
af = "#cdd6f4";
|
||||||
ab = "#1e1e2e";
|
ab = "#1e1e2e";
|
||||||
|
width-factor = 0.3;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
nmt.script = ''
|
nmt.script = ''
|
||||||
assertFileExists home-path/etc/profile.d/hm-session-vars.sh
|
assertFileExists home-path/etc/profile.d/hm-session-vars.sh
|
||||||
assertFileContains 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'\""
|
"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'\""
|
||||||
'';
|
'';
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue