-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
79 lines (79 loc) · 2.21 KB
/
manifest.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
{
"id": "session-manager",
"name": "Session Manager",
"description": "An extension to quickly shutdown, reboot, hibernate, suspend and lock the pc",
"creator_name": "Whiskers Apps",
"creator_link": "https://github.com/Whiskers-Apps",
"repository_link": "https://github.com/Whiskers-Apps/tigris-session-manager",
"settings": [
{
"id": "preset",
"name": "Preset",
"description": "Select a custom set of commands for your desktop environment",
"setting_type": "Select",
"value": "auto",
"select_values": [
{
"id": "auto",
"text": "Auto"
},
{
"id": "kde",
"text": "KDE"
},
{
"id": "gnome",
"text": "Gnome"
},
{
"id": "hyprland",
"text": "Hyprland"
},
{
"id": "other",
"text": "Other (Custom Commands)"
}
]
},
{
"id": "custom-shutdown",
"name": "Custom Shutdown",
"description": "Command to run when shutting down",
"setting_type": "Text",
"value": "",
"conditional_show": [{ "setting_id": "preset", "setting_value": "other" }]
},
{
"id": "custom-reboot",
"name": "Custom Reboot",
"description": "Command to run when rebooting",
"setting_type": "Text",
"value": "",
"conditional_show": [{ "setting_id": "preset", "setting_value": "other" }]
},
{
"id": "custom-hibernate",
"name": "Custom Hibernate",
"description": "Command to run when hibernating",
"setting_type": "Text",
"value": "",
"conditional_show": [{ "setting_id": "preset", "setting_value": "other" }]
},
{
"id": "custom-suspend",
"name": "Custom Suspend",
"description": "Command to run when suspending",
"setting_type": "Text",
"value": "",
"conditional_show": [{ "setting_id": "preset", "setting_value": "other" }]
},
{
"id": "custom-logout",
"name": "Custom Logout",
"description": "Command to run when logging out",
"setting_type": "Text",
"value": "",
"conditional_show": [{ "setting_id": "preset", "setting_value": "other" }]
}
]
}