forked from HarkerDev/bellschedule
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoptions.json
More file actions
executable file
·86 lines (86 loc) · 2.03 KB
/
Copy pathoptions.json
File metadata and controls
executable file
·86 lines (86 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
77
78
79
80
81
82
83
84
85
86
{
"sections": [
{
"name": "General",
"options": [
{
"name": "color",
"type": "checkbox",
"default": false,
"description": "Show color"
},
{
"name": "showPassingPeriods",
"type": "checkbox",
"default": true,
"description": "Show passing periods"
},
{
"name": "enablePeriodNotifications",
"type": "checkbox",
"default": false,
"description": "Enable period change notifications"
},
{
"name": "notificationDuration",
"type": "number",
"default": 5,
"description": "Notification display time (seconds)"
},
{
"name": "enableDayView",
"type": "checkbox",
"default": false,
"mobileDefault": true,
"description": "Enable day view"
}
]
},
{
"name": "Automatic Updating",
"tooltip": "Set to 0 to disable automatic updating",
"options": [
{
"name": "activeUpdateInterval",
"type": "number",
"default": 10,
"description": "Active update interval (seconds)",
"tooltip": "Applies while tab is selected and window is active"
},
{
"name": "inactiveUpdateInterval",
"type": "number",
"default": 30,
"description": "Inactive update interval (seconds)",
"tooltip": "Applies while tab is selected, but window is not active"
},
{
"name": "hiddenUpdateInterval",
"type": "number",
"default": 30,
"description": "Hidden update interval (seconds)",
"tooltip": "Applies while tab is not selected or window is minimized"
}
]
},
{
"name": "Override Refresh",
"tooltip": "Override default keyboard shortcuts for refresh and update the schedule instead. (Only really useful with automatic updating disabled.)",
"platforms": ["desktop"],
"options": [
{
"name": "interceptF5",
"type": "checkbox",
"default": false,
"description": "Override F5"
},
{
"name": "interceptCtrlR",
"type": "checkbox",
"default": false,
"description": "Override Ctrl/Cmd-R"
}
]
}
]
}