From 2acab1b4e5f50eef13d23ab885479ed5bd46faaf Mon Sep 17 00:00:00 2001 From: The_miro Date: Fri, 26 Sep 2025 00:10:55 +0200 Subject: [PATCH] set hypridle to send the system to sleep after 10 min --- desktopenvs/hyprland/hypr/hypridle.conf | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/desktopenvs/hyprland/hypr/hypridle.conf b/desktopenvs/hyprland/hypr/hypridle.conf index f851318..b649886 100644 --- a/desktopenvs/hyprland/hypr/hypridle.conf +++ b/desktopenvs/hyprland/hypr/hypridle.conf @@ -6,6 +6,10 @@ general { } listener { timeout = 120 - on-timeout = hyprlock # lock screen when timeout has passed + on-timeout = loginctl lock-session # lock screen when timeout has passed } +listener { + timeout = 600 #10min + on-timeout = systemctl suspend # suspend pc +}