forked from seqizz/ulauncher-tmux-attach
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
40 lines (39 loc) · 1.1 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
{
"required_api_version": "^2.0.0",
"name": "Tmux attach",
"description": "Open your existing tmux sessions",
"developer_name": "gurkan.in",
"icon": "images/tmux.png",
"options": {
"query_debounce": 0.1
},
"preferences": [
{
"id": "tmux_att",
"type": "keyword",
"name": "Tmux Attach",
"description": "Open your existing tmux sessions",
"default_value": "tmux"
},
{
"id": "terminal_binary",
"type": "input",
"name": "Terminal emulator to run",
"default_value": "gnome-terminal"
},
{
"id": "console_parameters_attach",
"type": "input",
"name": "Parameters to append to terminal command if tmux session found",
"description": "Use %s for session name variable. Avoid or escape double quotes.",
"default_value": "--tab -e 'tmux att -t %s'"
},
{
"id": "console_parameters_new",
"type": "input",
"name": "Parameters to append to terminal command for new tmux session",
"description": "Avoid or escape double quotes.",
"default_value": "--tab -e 'tmux'"
}
]
}