From 7899fccbbe3d6746982178d3eff48ce8943b0f71 Mon Sep 17 00:00:00 2001 From: Alex Saveau Date: Sun, 10 Nov 2024 15:24:09 -0500 Subject: [PATCH] Slow down the fade to black time --- src/fade_black.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fade_black.rs b/src/fade_black.rs index 34a391c..cf45697 100644 --- a/src/fade_black.rs +++ b/src/fade_black.rs @@ -15,7 +15,7 @@ use wayland_protocols_wlr::layer_shell::v1::client::{zwlr_layer_shell_v1, zwlr_l use crate::{State, StateInner}; -const FADE_TIME: Duration = Duration::from_millis(2000); +const FADE_TIME: Duration = Duration::from_secs(5); #[derive(Debug)] pub struct FadeBlackSurface {