♻️ Moved wallpapers, added wallpapers and secrets to theme and common files

This commit is contained in:
2025-03-09 11:53:49 +01:00
parent 1ff146e3c0
commit 542a627e23
17 changed files with 39 additions and 30 deletions

View File

@ -1,8 +1,6 @@
{ lib, theme, ... }:
{ theme, ... }:
{
# TODO use catppuccin package
programs.hyprlock = {
enable = true;
settings = {
@ -10,7 +8,7 @@
background = [
{
path = "${../../../wallpapers/catppuccin_page_curl.png}";
path = "${theme.wallpaper.lockscreen}";
}
];
@ -55,7 +53,7 @@
# USER AVATAR
image = {
path = "${../../face.png}";
path = builtins.toString theme.avatar.image;
size = 100;
border_color = "${theme.blueRgb}";
position = "0, 75";
@ -70,16 +68,16 @@
dots_size = 0.2;
dots_spacing = 0.2;
dots_center = true;
outer_color = lib.mkDefault "${theme.blueRgb}";
inner_color = lib.mkDefault "${theme.surface0Rgb}";
font_color = lib.mkDefault "${theme.textRgb}";
outer_color = "${theme.blueRgb}";
inner_color = "${theme.surface0Rgb}";
font_color = "${theme.textRgb}";
fade_on_empty = false;
placeholder_text = "<span foreground=\"##${theme.textAlpha}\">󰌾 Logged in as <span foreground=\"##${theme.blueAlpha}\">$USER</span></span>";
hide_input = false;
check_color = lib.mkDefault "${theme.blueRgb}";
fail_color = lib.mkDefault "${theme.redRgb}";
check_color = "${theme.blueRgb}";
fail_color = "${theme.redRgb}";
fail_text = "<i>$FAIL <b>($ATTEMPTS)</b></i>";
capslock_color = lib.mkDefault "${theme.yellowRgb}";
capslock_color = "${theme.yellowRgb}";
position = "0, -47"; # TODO change to use % at 25.05
halign = "center";
valign = "center";