feat: redesign, with onedark theme
This commit is contained in:
parent
00f5075f17
commit
19e72eedb7
12 changed files with 71 additions and 50 deletions
|
@ -1,6 +1,5 @@
|
|||
{ ...
|
||||
}: {
|
||||
programs.hyprlock = {
|
||||
{ config, lib, ... }: {
|
||||
programs.hyprlock = lib.mkForce {
|
||||
enable = true;
|
||||
settings = {
|
||||
general = {
|
||||
|
@ -10,29 +9,25 @@
|
|||
no_fade_in = false;
|
||||
};
|
||||
|
||||
#background = [
|
||||
# {
|
||||
# path = "screenshot";
|
||||
# blur_passes = 3;
|
||||
# blur_size = 8;
|
||||
# }
|
||||
#];
|
||||
background = [{
|
||||
path = "screenshot";
|
||||
blur_passes = 3;
|
||||
blur_size = 8;
|
||||
}];
|
||||
|
||||
#input-field = [
|
||||
# {
|
||||
# size = "200, 50";
|
||||
# position = "0, -80";
|
||||
# monitor = "";
|
||||
# dots_center = true;
|
||||
# fade_on_empty = false;
|
||||
# font_color = "rgb(202, 211, 245)";
|
||||
# inner_color = "rgb(91, 96, 120)";
|
||||
# outer_color = "rgb(24, 25, 38)";
|
||||
# outline_thickness = 5;
|
||||
# #placeholder_text = '\'<span foreground="##cad3f5">Password...</span>'\';
|
||||
# shadow_passes = 2;
|
||||
# }
|
||||
#];
|
||||
input-field = [{
|
||||
size = "400, 50";
|
||||
position = "0, -80";
|
||||
monitor = "";
|
||||
dots_center = true;
|
||||
fade_on_empty = false;
|
||||
font_color = "rgb(${config.lib.stylix.colors.base07})";
|
||||
inner_color = "rgb(${config.lib.stylix.colors.base02})";
|
||||
outer_color = "rgb(${config.lib.stylix.colors.base03})";
|
||||
outline_thickness = 1;
|
||||
placeholder_text = ''<span foreground="##cad3f5">Password...</span>'';
|
||||
shadow_passes = 2;
|
||||
}];
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue