diff options
Diffstat (limited to 'config')
| -rw-r--r-- | config/GeneralConfig.qml | 7 |
1 files changed, 7 insertions, 0 deletions
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<string> terminal: ["foot"] @@ -9,4 +10,10 @@ JsonObject { property list<string> playback: ["mpv"] property list<string> explorer: ["thunar"] } + + component Idle: JsonObject { + property real lockTimeout: 180 // 3 mins + property real dpmsTimeout: 300 // 5 mins + property real sleepTimeout: 600 // 10 mins + } } |