mirror of
https://github.com/SebastianStork/nixos-config.git
synced 2026-01-21 21:01:34 +01:00
hyprlock: Use wallpaper as background instead of screenshot
This commit is contained in:
parent
6e08f6a8a0
commit
391081fe8e
1 changed files with 10 additions and 7 deletions
|
|
@ -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}";
|
||||||
|
});
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue