mirror of
https://github.com/brl/mutter.git
synced 2025-06-13 16:59:30 +00:00
Add --mutter-plugins command line argument
src/core/main.c: Add --mutter-plugins argument (overrides GConf value) src/core/prefs.c src/include/prefs.h: Add meta_prefs_override_clutter_plugins() to set a value for clutter_plugins that overrides the value from GConf
This commit is contained in:
@ -133,11 +133,20 @@ void meta_prefs_set_clutter_disabled (gboolean whether);
|
||||
GSList * meta_prefs_get_clutter_plugins (void);
|
||||
|
||||
/**
|
||||
* Sets whether the compositor is turned on.
|
||||
* Sets the list of plugins persistently in GConf
|
||||
*
|
||||
* \param whether TRUE to turn on, FALSE to turn off
|
||||
* \param list list of plugin:option pairs
|
||||
*/
|
||||
void meta_prefs_set_clutter_plugins (GSList *list);
|
||||
|
||||
/**
|
||||
* Sets the list of plugins temporarily for this process. The value
|
||||
* from GConf will be ignored.
|
||||
*
|
||||
* \param list list of plugin:option pairs
|
||||
*/
|
||||
void meta_prefs_override_clutter_plugins (GSList *list);
|
||||
|
||||
#endif
|
||||
|
||||
gboolean meta_prefs_get_live_hidden_windows (void);
|
||||
|
Reference in New Issue
Block a user