Displaying 2 results from an estimated 2 matches for "comppluginrulebefore".
2006 Oct 06
2
solving plugin dependency issues
...provided is clearly not good enough.
There's currently two issues with the plugins that exist in the compiz
repository.
plane plugin conflicts with cube and rotate plugin, zoom plugin should
probably work with either cube or plane but currently only loads when
cube plugin is used.
Adding a
{ CompPluginRuleBefore, "cube" }
to the plane plugin and a
{ CompPluginRuleBefore, "plane" }
to the cube plugin will solve the conflict but it's not perfect as it
means that all plugins sort of needs to be aware of all other plugins.
Having the zoom plugin load if either the cube plugin or the pl...
2007 Apr 11
2
Tweaks to plugin dependency rules
...animation/group
and fade. They both specify RuleAfter but compiz interprets
that as 'load after AND require it', there is a Require rule, but
this relates to features not plugins.
I would like to propose these changes and definitions, they seem
more logical unless I am missing something.
CompPluginRuleBefore - If this plugin is loaded, make sure I am
loaded before it.
CompPluginRuleAfter - If this plugin is loaded, make sure I am
loaded after
CompPluginRuleRequire - Require this plugin to be loaded if I
am loaded. This can be combined with other rules. This is roughly
what RuleAfter is now.
CompPl...