-
Notifications
You must be signed in to change notification settings - Fork 4
/
settings-schema.json
80 lines (80 loc) · 1.89 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"file": {
"default": "/usr/share/games/fortunes/literature",
"type": "filechooser",
"description" : "File:",
"allow-none" : false,
"select-dir" : false
},
"delay": {
"default": 1440,
"type": "spinbutton",
"min": 1,
"max": 1440,
"description" : "Update every:",
"units" : "minutes",
"step": 10
},
"font-options-separator": {
"type": "separator"
},
"font-options-header": {
"type": "header",
"description" : "Font options:"
},
"font-size": {
"type": "spinbutton",
"default": 15,
"min": 8,
"max": 200,
"units": " ",
"description" : "Font size:",
"step": 1
},
"text-color" : {
"type": "colorchooser",
"default" : "rgb(255,255,255)",
"description" : "Font color:",
"tooltip" : "Click to select a new text color"
},
"font-shadow-options-separator": {
"type": "separator"
},
"font-shadow-options-header": {
"type": "header",
"description" : "Text shadow effects:"
},
"horizontal-shadow": {
"type": "spinbutton",
"default": 1,
"min": 0,
"max": 100,
"units": "px",
"description" : "Horizontal shadow:",
"step": 1
},
"vertical-shadow": {
"type": "spinbutton",
"default": 1,
"min": 0,
"max": 100,
"units": "px",
"description" : "Vertical shadow:",
"step": 1
},
"shadow-blur": {
"type": "spinbutton",
"default": 2,
"min": 0,
"max": 100,
"units": "px",
"description" : "Shadow blur:",
"step": 1
},
"shadow-color" : {
"type": "colorchooser",
"default" : "rgb(0,0,0)",
"description" : "Shadow color:",
"tooltip" : "Click to select a new text color"
}
}