diff options
author | Scott Moreau <oreaus@gmail.com> | 2010-07-08 21:33:25 -0600 |
---|---|---|
committer | Scott Moreau <oreaus@gmail.com> | 2010-07-08 21:33:25 -0600 |
commit | 5793c8910c68c9da561fbee296392cdf67f33076 (patch) | |
tree | 09fb3a426c2148ebbc4293abe2854653aa4dec9c /toggledeco.xml.in | |
parent | b8d9e270a83f1bc55f72b644f75bb4f74a159b8d (diff) | |
download | toggle-decoration-5793c8910c68c9da561fbee296392cdf67f33076.tar.gz toggle-decoration-5793c8910c68c9da561fbee296392cdf67f33076.tar.bz2 |
Initial C++ commit.
Diffstat (limited to 'toggledeco.xml.in')
-rw-r--r-- | toggledeco.xml.in | 50 |
1 files changed, 31 insertions, 19 deletions
diff --git a/toggledeco.xml.in b/toggledeco.xml.in index 80b90ac..ebe6618 100644 --- a/toggledeco.xml.in +++ b/toggledeco.xml.in @@ -1,23 +1,35 @@ <?xml version="1.0"?> <compiz> - <plugin name="toggledeco" useBcop="true"> - <_short>Toggle Decoration</_short> - <_long>Toggles decoration.</_long> + <plugin name="toggledeco" useBcop="true"> + <_short>Toggle Decoration</_short> + <_long>Toggles decoration for the focused window.</_long> <category>Window Management</category> - <display> - <group> - <_short>Bindings</_short> - <option name="trigger_key" type="key"> - <_short>Toggle decoration</_short> - <_long>Toggles decoration on/off.</_long> - <default><Shift>d</default> - </option> - <option name="trigger_all_key" type="key"> - <_short>Toggle decoration on desktop</_short> - <_long>Toggles decoration of every window on the desktop.</_long> - <default><Shift>a</default> - </option> - </group> - </display> - </plugin> + <deps> + <relation type="after"> + <plugin>composite</plugin> + <plugin>opengl</plugin> + <plugin>decor</plugin> + </relation> + <requirement> + <plugin>composite</plugin> + <plugin>opengl</plugin> + <plugin>decor</plugin> + </requirement> + </deps> + <options> + <group> + <_short>Bindings</_short> + <option name="trigger_key" type="key"> + <_short>Toggle decoration</_short> + <_long>Toggles decoration on/off.</_long> + <default><Shift><Control>d</default> + </option> + <option name="trigger_all_key" type="key"> + <_short>Toggle decoration on desktop</_short> + <_long>Toggles decoration for every window on the desktop.</_long> + <default><Shift><Control>a</default> + </option> + </group> + </options> + </plugin> </compiz> |