nosignal-shell/config/BackgroundConfig.qml
2025-08-27 23:09:10 +10:00

18 lines
447 B
QML

import Quickshell.Io
JsonObject {
property bool enabled: true
property DesktopClock desktopClock: DesktopClock {}
property Visualiser visualiser: Visualiser {}
component DesktopClock: JsonObject {
property bool enabled: false
}
component Visualiser: JsonObject {
property bool enabled: false
property bool autoHide: true
property real rounding: 1
property real spacing: 1
}
}