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
|
<?xml version="1.0"?>
<compiz>
<plugin name="neg" useBcop="true">
<_short>Negative</_short>
<_long>Used to set a window or screen negative</_long>
<category>Accessibility</category>
<deps>
<requirement>
<plugin>opengl</plugin>\
</requirement>
<relation type="after">
<plugin>composite</plugin>
<plugin>opengl</plugin>
<plugin>blur</plugin>
<plugin>decor</plugin>
</relation>
</deps>
<options>
<option name="window_toggle_key" type="key">
<_short>Toggle Window Negative</_short>
<_long>Toggle active window negative</_long>
<default><Super>n</default>
</option>
<option name="screen_toggle_key" type="key">
<_short>Toggle Screen Negative</_short>
<_long>Toggle screen negative</_long>
<default><Super>m</default>
</option>
<option name="neg_match" type="match">
<_short>Neg Windows</_short>
<_long>Windows to be negative by default</_long>
<default>any</default>
</option>
<option name="exclude_match" type="match">
<_short>Exclude Windows</_short>
<_long>Windows to exclude from negating</_long>
<default>type=Desktop</default>
</option>
<option name="neg_decorations" type="bool">
<_short>Negate Decorations</_short>
<_long>Also negate window decorations, not only the window contents.</_long>
<default>false</default>
</option>
</options>
</plugin>
</compiz>
|