nosignal-shell/config/BackgroundConfig.qml
2 * r + 2 * t 783057ab0d background: add visualiser
Also dashboard.visualiserBars -> services.visualiserBars
2025-08-25 20:13:55 +10:00

18 lines
446 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: true
property bool autoHide: true
property real rounding: 1
property real spacing: 1
}
}