-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings-schema.json
53 lines (53 loc) · 1.26 KB
/
settings-schema.json
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"top": {
"type": "header",
"description": "Deadlines configuration"
},
"listLength": {
"type": "scale",
"default": 5,
"min": 1,
"max": 10,
"step": 1,
"description": "Maximum length of display list",
"tooltip": "Set the max length of deadlines list to display"
},
"transparency": {
"type": "scale",
"default": 0.5,
"min": 0.0,
"max": 1.0,
"step": 0.05,
"description": "Transparency",
"tooltip": "Set the transparency of the desklet"
},
"zoom": {
"type": "spinbutton",
"default": 1.0,
"min": 0.5,
"max": 2.0,
"step": 0.1,
"units": "times",
"description": "Zoom by",
"tooltip": "Change the size of the desklet"
},
"textcolor": {
"type": "colorchooser",
"default": "rgb(255,255,255)",
"description": "Text color",
"tooltip": "Click the button to selct a new text color"
},
"bgcolor": {
"type": "colorchooser",
"default": "rgb(0,0,0)",
"description": "Background color",
"tooltip": "Click the button to selct a new background color"
},
"deadlines": {
"type": "textview",
"default": "",
"height": 5,
"description": "Deadlines list (in format 2019-5-26 12:00, task1; 2019-5-28 8:00, task2)",
"tooltip": "Set deadlines"
}
}