all repos — openbox @ aae074a11affd5c8bbe22b326ddbec323bb85677

openbox fork - make it a bit more like ryudo

remove teh startup state saving hacks since we can reconfigure now. no more restarting for the average user anymore.
Dana Jansens danakj@orodu.net
commit

aae074a11affd5c8bbe22b326ddbec323bb85677

parent

7416313cad8d0dc51d5a5ea31b20296755f3049d

2 files changed, 0 insertions(+), 34 deletions(-)

jump to
D openbox/startup.c

@@ -1,23 +0,0 @@

-#include "prop.h" -#include "screen.h" -#include "client.h" -#include "focus.h" -#include "config.h" -#include "openbox.h" - -guint32 *startup_stack_order = NULL; -guint startup_stack_size = 0; -guint32 startup_active = None; -guint32 startup_desktop = 0; - -void startup_save() -{ - /* save the stacking order on startup! */ - PROP_GETA32(RootWindow(ob_display, ob_screen), - net_client_list_stacking, window, - (guint32**)&startup_stack_order, &startup_stack_size); - PROP_GET32(RootWindow(ob_display, ob_screen), - net_active_window, window, &startup_active); - PROP_GET32(RootWindow(ob_display, ob_screen), - net_current_desktop, cardinal, &startup_desktop); -}
D openbox/startup.h

@@ -1,11 +0,0 @@

-#ifndef __startup_h -#define __startup_h - -extern guint32 *startup_stack_order; -extern guint startup_stack_size; -extern guint32 startup_active; -extern guint32 startup_desktop; - -void startup_save(); - -#endif