-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings-schema.json
More file actions
76 lines (76 loc) · 2.03 KB
/
settings-schema.json
File metadata and controls
76 lines (76 loc) · 2.03 KB
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
{
"work-duration": {
"type": "spinbutton",
"default": 25,
"min": 1,
"max": 60,
"units": "minutes",
"description": "Work Duration",
"step": 1
},
"break-duration": {
"type": "spinbutton",
"default": 5,
"min": 1,
"max": 30,
"units": "minutes",
"description": "Break Duration",
"step": 1
},
"long-break-duration": {
"type": "spinbutton",
"default": 15,
"min": 1,
"max": 60,
"units": "minutes",
"description": "Long Break Duration",
"step": 1
},
"cycles-before-long-break": {
"type": "spinbutton",
"default": 4,
"min": 1,
"max": 10,
"description": "Number of Pomodoro Cycles before Long Break",
"step": 1
},
"font-size": {
"type": "spinbutton",
"default": 40,
"min": 10,
"max": 200,
"units": "px",
"description": "Font size",
"step": 1
},
"text-color": {
"type": "colorchooser",
"default": "rgb(255,255,255)",
"description": "Text color",
"tooltip": "Click the button to select a new text color"
},
"background-color": {
"type": "colorchooser",
"default": "rgba(0, 0, 0, 0.363)",
"description": "Background color",
"tooltip": "Click the button to select a new background color"
},
"play-sound": {
"type": "switch",
"default": true,
"description": "Play sound when timer ends",
"tooltip": "Enable/disable sound notification"
},
"auto-start-next-timer": {
"type": "switch",
"default": true,
"description": "Automatically start the next timer after the current one ends",
"tooltip": "Enable/disable automatic start of the next timer"
},
"show-notifications": {
"type": "switch",
"default": true,
"description": "Show notifications",
"tooltip": "Enable/disable notifications"
}
}