update hyprlock config to the hm module
This commit is contained in:
parent
e7f270abef
commit
9a1bfec3bc
1 changed files with 50 additions and 61 deletions
|
@ -24,71 +24,60 @@ in {
|
||||||
|
|
||||||
config = mkIf cfg.enable {
|
config = mkIf cfg.enable {
|
||||||
home-manager.users.${username} = {
|
home-manager.users.${username} = {
|
||||||
imports = [ inputs.hyprlock.homeManagerModules.default ];
|
|
||||||
|
|
||||||
programs.hyprlock = {
|
programs.hyprlock = {
|
||||||
enable = true;
|
enable = true;
|
||||||
package = inputs.hyprlock.packages.${pkgs.system}.hyprlock;
|
package = inputs.hyprlock.packages.${pkgs.system}.hyprlock;
|
||||||
general = {
|
settings = {
|
||||||
grace = 2;
|
general = {
|
||||||
|
grace = 2;
|
||||||
|
hide_cursor = true;
|
||||||
|
};
|
||||||
|
background = [
|
||||||
|
{
|
||||||
|
color = "rgba(120f1177)";
|
||||||
|
path = "screenshot";
|
||||||
|
blur_size = 5;
|
||||||
|
blur_passes = 4;
|
||||||
|
}
|
||||||
|
];
|
||||||
|
|
||||||
|
input-field = [
|
||||||
|
{
|
||||||
|
size = "600, 50";
|
||||||
|
outline_thickness = 3;
|
||||||
|
dots_size = 0.1;
|
||||||
|
dots_spacing = 0.3;
|
||||||
|
outer_color = "rgba(9a8d9555)";
|
||||||
|
inner_color = "rgba(120f1111)";
|
||||||
|
font_color = "rgba(d1c2cbff)";
|
||||||
|
fade_on_empty = true;
|
||||||
|
position = "0, 20";
|
||||||
|
halign = "center";
|
||||||
|
valign = "center";
|
||||||
|
}
|
||||||
|
];
|
||||||
|
|
||||||
|
label = [
|
||||||
|
{
|
||||||
|
# clock
|
||||||
|
text = "$TIME";
|
||||||
|
color = text_color;
|
||||||
|
font_size = 65;
|
||||||
|
position = "0, 300";
|
||||||
|
halign = "center";
|
||||||
|
valign = "center";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
# battery
|
||||||
|
text = "cmd[update:1000] echo \"$(cat /sys/class/power_supply/BAT0/capacity)%\"";
|
||||||
|
color = text_color;
|
||||||
|
font_size = 30;
|
||||||
|
position = "0, 200";
|
||||||
|
halign = "center";
|
||||||
|
valign = "center";
|
||||||
|
}
|
||||||
|
];
|
||||||
};
|
};
|
||||||
backgrounds = [
|
|
||||||
{
|
|
||||||
color = "rgba(120f1177)";
|
|
||||||
path = "screenshot";
|
|
||||||
blur_size = 5;
|
|
||||||
blur_passes = 4;
|
|
||||||
}
|
|
||||||
];
|
|
||||||
|
|
||||||
input-fields = [
|
|
||||||
{
|
|
||||||
size = {
|
|
||||||
width = 600;
|
|
||||||
height = 50;
|
|
||||||
};
|
|
||||||
outline_thickness = 3;
|
|
||||||
dots_size = 0.1;
|
|
||||||
dots_spacing = 0.3;
|
|
||||||
outer_color = "rgba(9a8d9555)";
|
|
||||||
inner_color = "rgba(120f1111)";
|
|
||||||
font_color = "rgba(d1c2cbff)";
|
|
||||||
fade_on_empty = true;
|
|
||||||
position = {
|
|
||||||
x = 0;
|
|
||||||
y = 20;
|
|
||||||
};
|
|
||||||
halign = "center";
|
|
||||||
valign = "center";
|
|
||||||
}
|
|
||||||
];
|
|
||||||
|
|
||||||
labels = [
|
|
||||||
{
|
|
||||||
# clock
|
|
||||||
text = "$TIME";
|
|
||||||
color = text_color;
|
|
||||||
font_size = 65;
|
|
||||||
position = {
|
|
||||||
x = 0;
|
|
||||||
y = 300;
|
|
||||||
};
|
|
||||||
halign = "center";
|
|
||||||
valign = "center";
|
|
||||||
}
|
|
||||||
{
|
|
||||||
# battery
|
|
||||||
text = "cmd[update:1000] echo \"$(cat /sys/class/power_supply/BAT0/capacity)%\"";
|
|
||||||
color = text_color;
|
|
||||||
font_size = 30;
|
|
||||||
position = {
|
|
||||||
x = 0;
|
|
||||||
y = 200;
|
|
||||||
};
|
|
||||||
halign = "center";
|
|
||||||
valign = "center";
|
|
||||||
}
|
|
||||||
];
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue