mirror of
https://github.com/hyprwm/hyprlock.git
synced 2024-11-16 23:05:58 +01:00
nix: add dots_center
This commit is contained in:
parent
9d8ee2a1d0
commit
9dea7c2f55
1 changed files with 8 additions and 1 deletions
|
@ -103,6 +103,12 @@ in {
|
||||||
default = 0.15;
|
default = 0.15;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
dots_center = mkOption {
|
||||||
|
description = "Center position of the dots in the input field";
|
||||||
|
type = bool;
|
||||||
|
default = true;
|
||||||
|
};
|
||||||
|
|
||||||
outer_color = mkOption {
|
outer_color = mkOption {
|
||||||
description = "The outer color of the input field";
|
description = "The outer color of the input field";
|
||||||
type = str;
|
type = str;
|
||||||
|
@ -262,6 +268,7 @@ in {
|
||||||
outline_thickness = ${toString input-field.outline_thickness}
|
outline_thickness = ${toString input-field.outline_thickness}
|
||||||
dots_size = ${toString input-field.dots_size}
|
dots_size = ${toString input-field.dots_size}
|
||||||
dots_spacing = ${toString input-field.dots_spacing}
|
dots_spacing = ${toString input-field.dots_spacing}
|
||||||
|
dots_center = ${boolToString input-field.dots_center}
|
||||||
outer_color = ${input-field.outer_color}
|
outer_color = ${input-field.outer_color}
|
||||||
inner_color = ${input-field.inner_color}
|
inner_color = ${input-field.inner_color}
|
||||||
font_color = ${input-field.font_color}
|
font_color = ${input-field.font_color}
|
||||||
|
|
Loading…
Reference in a new issue