diff options
Diffstat (limited to 'config/BackgroundConfig.qml')
| -rw-r--r-- | config/BackgroundConfig.qml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/config/BackgroundConfig.qml b/config/BackgroundConfig.qml index ec6b299..b8a8ad9 100644 --- a/config/BackgroundConfig.qml +++ b/config/BackgroundConfig.qml @@ -7,6 +7,23 @@ JsonObject { component DesktopClock: JsonObject { property bool enabled: false + property real scale: 1.0 + property string position: "bottom-right" + property bool invertColors: false + property DesktopClockBackground background: DesktopClockBackground {} + property DesktopClockShadow shadow: DesktopClockShadow {} + } + + component DesktopClockBackground: JsonObject { + property bool enabled: false + property real opacity: 0.7 + property bool blur: true + } + + component DesktopClockShadow: JsonObject { + property bool enabled: true + property real opacity: 0.7 + property real blur: 0.4 } component Visualiser: JsonObject { |