forked from seqizz/ulauncher-tmux-attach
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
54 lines (53 loc) · 1.64 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
{
"required_api_version": "^2.0.0",
"name": "Tmux",
"description": "Open your existing tmux sessions",
"developer_name": "Adrian Haasler García",
"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": "session_description",
"type": "input",
"name": "Description format for session",
"description": "See `man --pager='less -p ^FORMATS' tmux` for format options. Leave empty for no description",
"default_value": "Attach #S (#{session_windows} windows)"
},
{
"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 attach -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 new -s %s'"
},
{
"id": "new_session_name",
"type": "input",
"name": "Default new session name",
"description": "Avoid or escape double quotes. Will have a number if it already exists.",
"default_value": "new"
}
]
}