Files
z-bar-qt/Config/General.qml
T
Zacharias-Brohn e818ac5515 config fixes
2026-02-17 12:46:25 +01:00

24 lines
430 B
QML

import Quickshell.Io
import Quickshell
JsonObject {
property string logo: ""
property string wallpaperPath: Quickshell.env("HOME") + "/Pictures/Wallpapers"
property bool wallust: false
property Idle idle: Idle {}
component Idle: JsonObject {
property list<var> timeouts: [
{
timeout: 180,
idleAction: "lock"
},
{
timeout: 300,
idleAction: "dpms off",
activeAction: "dpms on"
}
]
}
}