diff options
author | Freya Murphy <freya@freyacat.org> | 2025-07-17 09:33:53 -0400 |
---|---|---|
committer | Freya Murphy <freya@freyacat.org> | 2025-07-17 09:33:53 -0400 |
commit | dc4c7019390df7dc5eee4ee78687c58261c7f30a (patch) | |
tree | d02b4cec22982db0780ae3097c6d5464c7df34c3 /modules/apps/hyprlock.nix | |
parent | fix ly session_log for reals (diff) | |
download | dotfiles-nix-dc4c7019390df7dc5eee4ee78687c58261c7f30a.tar.gz dotfiles-nix-dc4c7019390df7dc5eee4ee78687c58261c7f30a.tar.bz2 dotfiles-nix-dc4c7019390df7dc5eee4ee78687c58261c7f30a.zip |
fix hyprlock fade
Diffstat (limited to '')
-rw-r--r-- | modules/apps/hyprlock.nix | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/modules/apps/hyprlock.nix b/modules/apps/hyprlock.nix index 6d4d238..2bf70e3 100644 --- a/modules/apps/hyprlock.nix +++ b/modules/apps/hyprlock.nix @@ -24,6 +24,14 @@ in { "fingerprint:enabled" = config.fingerprint; }; + animations = { + enabled = true; + animation = [ + "fadeIn, 0" + "fadeOut, 0" + ]; + }; + background = { path = config.theme.lockscreen; color = base; |