all repos — openbox @ 07b38ba2c3fb7d63bc09a6221c675e1c1a3afc4d

openbox fork - make it a bit more like ryudo

dont save/load history. its slow and its stupid.
Dana Jansens danakj@orodu.net
commit

07b38ba2c3fb7d63bc09a6221c675e1c1a3afc4d

parent

9c1438f17b84ef096faec0b8d52dd7d39c2c50c5

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

jump to
M plugins/placement/history.cplugins/placement/history.c

@@ -250,7 +250,7 @@ path = g_build_filename(g_get_home_dir(), ".openbox", "history", NULL);

history_path = g_strdup_printf("%s.%d", path, ob_screen); g_free(path); - load_history(); /* load from the historydb file */ + /*load_history(); /* load from the historydb file */ dispatch_register(Event_Client_Destroy, (EventHandler)event, NULL); }

@@ -259,7 +259,7 @@ void history_shutdown()

{ GSList *it; - save_history(); /* save to the historydb file */ + /*save_history(); /* save to the historydb file */ for (it = history_list; it != NULL; it = it->next) { struct HistoryItem *hi = it->data; g_free(hi->name);