forked from seqizz/ulauncher-session-actions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
50 lines (49 loc) · 1.39 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
{
"required_api_version": "2",
"name": "Session Actions for Linux Mint / Cinnamon",
"description": "Logout / Reboot / Shutdown / Suspend easily.",
"developer_name": "gurkan.in",
"icon": "images/exit.png",
"options": {
"query_debounce": 0.1
},
"preferences": [
{
"id": "sessionactions_ext",
"type": "keyword",
"name": "Session Actions",
"description": "Logout / Reboot / Shutdown / Suspend easily.",
"default_value": "exit"
},
{
"id": "logout_command",
"type": "input",
"name": "Command to run to execute logout action",
"default_value": "cinnamon-session-quit --logout"
},
{
"id": "hibernate_command",
"type": "input",
"name": "Command to run to execute hibernate action",
"default_value": "systemctl hibernate"
},
{
"id": "shutdown_command",
"type": "input",
"name": "Command to run to execute shutdown action",
"default_value": "cinnamon-session-quit --power-off"
},
{
"id": "reboot_command",
"type": "input",
"name": "Command to run to execute reboot action",
"default_value": "cinnamon-session-quit --reboot"
},
{
"id": "suspend_command",
"type": "input",
"name": "Command to run to execute suspend action",
"default_value": "systemctl suspend"
}
]
}