hyprlock: fix config
This commit is contained in:
parent
d379c60bdf
commit
5ed1986caa
1 changed files with 28 additions and 27 deletions
|
|
@ -1,35 +1,36 @@
|
||||||
{ pkgs
|
{ config
|
||||||
, inputs
|
|
||||||
, config
|
|
||||||
, ...
|
, ...
|
||||||
}:
|
}:
|
||||||
{
|
{
|
||||||
programs.hyprlock.enable = true;
|
programs.hyprlock = {
|
||||||
programs.hyprlock.settings = {
|
enable = true;
|
||||||
backgrounds = [
|
settings = {
|
||||||
{
|
background = [
|
||||||
monitor = "";
|
{
|
||||||
path = "";
|
monitor = "";
|
||||||
color = "rgba(26, 27, 38, 1.0)";
|
path = "";
|
||||||
}
|
color = "rgba(26, 27, 38, 1.0)";
|
||||||
];
|
}
|
||||||
|
];
|
||||||
|
|
||||||
input-fields = [
|
input-field = [
|
||||||
{
|
{
|
||||||
monitor = "${config.programs.ironbar.monitor}";
|
monitor = "${config.programs.ironbar.monitor}";
|
||||||
|
|
||||||
placeholder_text = "password or something";
|
placeholder_text = "password or something";
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
|
||||||
labels = [
|
label = [
|
||||||
{
|
{
|
||||||
monitor = "";
|
monitor = "${config.programs.ironbar.monitor}";
|
||||||
text = "$TIME";
|
text = "$TIME";
|
||||||
font_size = 50;
|
font_size = 50;
|
||||||
valign = "center";
|
position = "0, 200";
|
||||||
halign = "center";
|
valign = "center";
|
||||||
}
|
halign = "center";
|
||||||
];
|
}
|
||||||
|
];
|
||||||
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue