-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathConfig.qml
More file actions
28 lines (22 loc) · 710 Bytes
/
Copy pathConfig.qml
File metadata and controls
28 lines (22 loc) · 710 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
pragma Singleton
import QtQuick
QtObject {
id: config
property string variant: "scalloped"
property string theme: "emerald-green"
property real radiusScale: 1.0
property real animationSpeed: 1.0
property bool use24Hour: false
property int marginTop: 60
property int marginLeft: 60
property int marginRight: 60
property int marginBottom: 60
property string anchorPosition: "center"
property var worldTimezones: [
{ label: "New York", zone: "America/New_York" },
{ label: "London", zone: "Europe/London" },
{ label: "Tokyo", zone: "Asia/Tokyo" }
]
property int heroFontSize: 112
property int heroFontSizeAnalog: 22
}