-
Notifications
You must be signed in to change notification settings - Fork 1
/
settings-schema.json
55 lines (55 loc) · 1.47 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
{
"file": {
"type": "filechooser",
"default": "",
"description": "Path to note text file",
"tooltip": "Select your text file, where to read from and save to.",
"allow-none": true
},
"transparency": {
"type": "scale",
"indent": true,
"default": 0.5,
"min": 0.0,
"max": 1.0,
"step": 0.05,
"description": "Transparency",
"tooltip": "Set the transparency of the desklet"
},
"bgcolor": {
"type": "colorchooser",
"indent": true,
"default": "rgb(0,0,0)",
"description": "Background color",
"tooltip": "Click the button to select a new background color"
},
"cornerradius": {
"type": "spinbutton",
"indent": true,
"default": 10.0,
"min": 0,
"max": 50.0,
"step": 1,
"units": "px",
"description": "Corner radius",
"tooltip": "Radius for rounding the desklet's corners"
},
"maxwidth": {
"type": "spinbutton",
"indent": true,
"default": 200.0,
"min": 100,
"max": 2000.0,
"step": 1,
"units": "px",
"description": "Max width (px)",
"tooltip": "Max width of note"
},
"textcolor": {
"type": "colorchooser",
"indent": true,
"default": "rgb(255,255,255)",
"description": "Text color",
"tooltip": "Click the button to select a new text color"
}
}