-
Notifications
You must be signed in to change notification settings - Fork 177
/
command.xml
62 lines (60 loc) · 2.28 KB
/
command.xml
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
<?xml version="1.0"?>
<wayfire>
<plugin name="command">
<_short>Command</_short>
<_long>A plugin to bind key combo (key, button, touch) to execute shell commands.</_long>
<category>General</category>
<option name="bindings" type="dynamic-list" type-hint="dict">
<_short>Regular bindings</_short>
<_long>Regular bindings</_long>
<entry prefix="command_" type="string" name="command">
<_short>Command</_short>
<_long>Sets the command to execute.</_long>
<hint>file</hint>
</entry>
<entry prefix="binding_" type="activator" name="binding">
<_short>Binding</_short>
<_long>Sets the triggering activator binding.</_long>
</entry>
</option>
<option name="repeatable_bindings" type="dynamic-list" type-hint="dict">
<_short>Repeatable bindings</_short>
<_long>Bindings which repeat their command if their key or button is held pressed.</_long>
<entry prefix="command_" type="string" name="command">
<_short>Command</_short>
<_long>Sets the command to execute.</_long>
<hint>file</hint>
</entry>
<entry prefix="repeatable_binding_" type="activator" name="binding">
<_short>Binding</_short>
<_long>Sets the triggering activator binding.</_long>
</entry>
</option>
<option name="always_bindings" type="dynamic-list" type-hint="dict">
<_short>Always bindings</_short>
<_long>Sets the bindings which are always available, even when screen is locked.</_long>
<entry prefix="command_" type="string" name="command">
<_short>Command</_short>
<_long>Sets the command to execute.</_long>
<hint>file</hint>
</entry>
<entry prefix="always_binding_" type="activator" name="binding">
<_short>Binding</_short>
<_long>Sets the triggering activator binding.</_long>
</entry>
</option>
<option name="release_bindings" type="dynamic-list" type-hint="dict">
<_short>Release bindings</_short>
<_long>Sets the bindings which activate on release</_long>
<entry prefix="command_" type="string" name="command">
<_short>Command</_short>
<_long>Sets the command to execute.</_long>
<hint>file</hint>
</entry>
<entry prefix="release_binding_" type="activator" name="binding">
<_short>Binding</_short>
<_long>Sets the triggering activator binding.</_long>
</entry>
</option>
</plugin>
</wayfire>