forked from gfreeau/cinnamon-pomodoro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings-schema.json
114 lines (98 loc) · 2.55 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"head_durations": {
"type": "header",
"description": "Durations (minutes)"
},
"pomodoro_duration": {
"type": "scale",
"default": 25,
"min": 1,
"max": 60,
"step": 1,
"description": "Pomodoro Duration: "
},
"short_break_duration": {
"type": "scale",
"default": 5,
"min": 1,
"max": 12,
"step": 1,
"description": "Short Break Duration: "
},
"long_break_duration": {
"type": "scale",
"default": 15,
"min": 1,
"max": 36,
"step": 1,
"description": "Long Break Duration: "
},
"head_options": {
"type": "header",
"description": "Options"
},
"show_dialog_messages" : {
"type" : "checkbox",
"description" : "Show Dialog Messages",
"default" : true
},
"auto_start_after_break_ends" : {
"type" : "checkbox",
"description" : "Auto start a new pomodoro after a break ends",
"default" : true
},
"display_icon" : {
"type" : "checkbox",
"description" : "Display the pomodoro icon in the applet panel",
"default" : true
},
"head_sounds": {
"type": "header",
"description": "Sounds"
},
"break_sound" : {
"type" : "checkbox",
"description" : "Play Break Sound",
"default" : true
},
"break_sound_file" : {
"type" : "filechooser",
"description" : "Break Sound File ",
"default" : "deskbell.wav",
"select-dir" : false,
"dependency" : "break_sound"
},
"timer_sound" : {
"type" : "checkbox",
"description" : "Play Timer Sound",
"default" : false
},
"timer_sound_file" : {
"type" : "filechooser",
"description" : "Timer Sound File ",
"default" : "EggTimer.ogg",
"select-dir" : false,
"dependency" : "timer_sound"
},
"warn_sound" : {
"type" : "checkbox",
"description" : "Play Warn Sound",
"default" : false
},
"warn_sound_delay": {
"type": "scale",
"default": 30,
"min": 5,
"max": 600,
"step": 5,
"description": "Warn Delay (in secs): ",
"dependency" : "warn_sound"
},
"warn_sound_file" : {
"type" : "filechooser",
"description" : "Warn Sound File ",
"default" : "warn.wav",
"select-dir" : false,
"dependency" : "warn_sound"
}
}