-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.json
More file actions
42 lines (42 loc) · 898 Bytes
/
Copy pathplugin.json
File metadata and controls
42 lines (42 loc) · 898 Bytes
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
{
"id": "deep-doze",
"name": "Deep Doze",
"author": "𝗠𝗘𝗢𝗪𝗻𝗮 💅",
"version": "1 [lua-plugin]",
"description": "Forces deep doze during sleep hours. Saves battery overnight.",
"license": "MIT",
"quick_action": {
"function": "doze_now",
"label": "Doze Now",
"labels": {
"zh": "立即休眠",
"ja": "今すぐドーズ"
}
},
"config": [
{
"key": "sleep_start",
"label": "Sleep start (0-23)",
"type": "number",
"default": 23
},
{
"key": "sleep_end",
"label": "Sleep end (0-23)",
"type": "number",
"default": 7
},
{
"key": "check_interval",
"label": "Check interval (minutes)",
"type": "number",
"default": 15
},
{
"key": "skip_charging",
"label": "Skip when charging",
"type": "bool",
"default": true
}
]
}