all repos — openbox @ 2a79db164c4d5b45220c566794b66d043cdabe75

openbox fork - make it a bit more like ryudo

remove the plugin stuffs
Dana Jansens danakj@orodu.net
commit

2a79db164c4d5b45220c566794b66d043cdabe75

parent

6f9cea86f506b89870ed14bfd2ac1b47dbb3435f

1 files changed, 1 insertions(+), 11 deletions(-)

jump to
M openbox/openbox.copenbox/openbox.c

@@ -16,7 +16,6 @@ #include "keyboard.h"

#include "mouse.h" #include "extensions.h" #include "grab.h" -#include "plugin.h" #include "timer.h" #include "group.h" #include "config.h"

@@ -219,21 +218,15 @@ /* focus_backup is used for stacking, so this needs to come before

anything that calls stacking_add */ focus_startup(); window_startup(); - plugin_startup(); - /* load the plugins specified in the pluginrc */ - plugin_loadall(i); /* set up the kernel config shit */ config_startup(i); - menu_startup(i); /* parse/load user options */ if (parse_load_rc(&doc, &node)) parse_tree(i, doc, node->xmlChildrenNode); /* we're done with parsing now, kill it */ xmlFreeDoc(doc); parse_shutdown(i); - - menu_parse(); /* load the theme specified in the rc file */ ob_rr_theme = RrThemeNew(ob_rr_inst, config_theme);

@@ -247,9 +240,7 @@ client_startup();

dock_startup(); keyboard_startup(); mouse_startup(); - - /* call startup for all the plugins */ - plugin_startall(); + menu_startup(); /* get all the existing windows */ client_manage_all();

@@ -262,7 +253,6 @@

dock_remove_all(); client_unmanage_all(); - plugin_shutdown(); /* calls all the plugins' shutdown functions */ menu_shutdown(); mouse_shutdown(); keyboard_shutdown();