From 24922be5e9261f78ef6f0f2b57815880a889ebf7 Mon Sep 17 00:00:00 2001 From: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> Date: Wed, 17 Sep 2025 23:15:47 +1000 Subject: feat: add idle monitor Replaces hypridle --- config/GeneralConfig.qml | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'config/GeneralConfig.qml') diff --git a/config/GeneralConfig.qml b/config/GeneralConfig.qml index b9fa364..91c85fc 100644 --- a/config/GeneralConfig.qml +++ b/config/GeneralConfig.qml @@ -2,6 +2,7 @@ import Quickshell.Io JsonObject { property Apps apps: Apps {} + property Idle idle: Idle {} component Apps: JsonObject { property list terminal: ["foot"] @@ -9,4 +10,10 @@ JsonObject { property list playback: ["mpv"] property list explorer: ["thunar"] } + + component Idle: JsonObject { + property real lockTimeout: 180 // 3 mins + property real dpmsTimeout: 300 // 5 mins + property real sleepTimeout: 600 // 10 mins + } } -- cgit v1.2.3-freya