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 | |
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
-rw-r--r-- | flake.lock | 12 | ||||
-rw-r--r-- | modules/apps/hyprlock.nix | 8 |
2 files changed, 14 insertions, 6 deletions
@@ -270,11 +270,11 @@ "xdph": "xdph" }, "locked": { - "lastModified": 1752658422, - "narHash": "sha256-02Gwtihml2IY3l03sumRwuxJUzHe/fCe5DmkPNIZCSc=", + "lastModified": 1752698382, + "narHash": "sha256-fxax8Xpn59Uqwj753Cp1KAtI09Wd7zbgTZNxtFKzhJk=", "owner": "hyprwm", "repo": "Hyprland", - "rev": "c4a4c341568944bd4fb9cd503558b2de602c0213", + "rev": "49d73d1893168f493b41ac9873f6022d79e75c83", "type": "github" }, "original": { @@ -493,11 +493,11 @@ ] }, "locked": { - "lastModified": 1752199438, - "narHash": "sha256-xSBMmGtq8K4Qv80TMqREmESCAsRLJRHAbFH2T/2Bf1Y=", + "lastModified": 1752682362, + "narHash": "sha256-ZNIpqCG/CfhmV+TgIeyO/XbhDjSWpwWokHM44j0Mn0w=", "owner": "nix-community", "repo": "nixos-wsl", - "rev": "d34d9412556d3a896e294534ccd25f53b6822e80", + "rev": "20001f9bf0aaf2b1c307e43a5eec8cf8f800fe14", "type": "github" }, "original": { 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; |