hyprlock: Use wallpaper as background instead of screenshot

This commit is contained in:
SebastianStork 2025-08-26 13:41:27 +02:00
parent 6e08f6a8a0
commit 391081fe8e

View file

@ -23,15 +23,18 @@ in
settings = { settings = {
general.hide_cursor = true; general.hide_cursor = true;
auth."fingerprint:enabled" = cfg.fprintAuth; auth."fingerprint:enabled" = cfg.fprintAuth;
animations.enabled = false; animations.enabled = false;
input-field.monitor = ""; input-field.monitor = "";
background = {
monitor = ""; background =
path = "screenshot"; [
blur_passes = 2; "DP-1"
brightness = 0.5; "eDP-1"
}; ]
|> lib.map (monitor: {
inherit monitor;
path = "~/.local/state/wpaperd/wallpapers/${monitor}";
});
}; };
}; };
}; };