summaryrefslogtreecommitdiff
path: root/config/BackgroundConfig.qml
blob: e901545fd820bb745d76f1687673887208e877cb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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: true
        property bool autoHide: true
        property real rounding: 1
        property real spacing: 1
    }
}