all repos — openbox @ 99fd65baf0b14356812ddc6881fd3fe2b996bd3b

openbox fork - make it a bit more like ryudo

obcl/main.c (raw)

1
2
3
4
5
6
7
8
9
#include "obcl.h"

int main()
{
    GList *lst = cl_parse("foo.conf");
    cl_tree_print(lst,0);
    cl_tree_free(lst);
    return 0;
}