diff options
| author | Dana Jansens <danakj@orodu.net> | 2007-04-21 22:06:47 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2007-04-21 22:06:47 +0000 |
| commit | 78d725009812d3aed87024264f0112ca9968519a (patch) | |
| tree | 5057b93f266d4cb8945dde2b46b636ce7d9404ce /parser/parse.c | |
| parent | 8a972b38791695f3e4f1b73f6b27a82fb20109c9 (diff) | |
add --debug-focus
add --config-file: to specify a config file to use.
set OPENBOX_RC property on the root window containing the path of the RC file being the full path to the RC file being used by openbox
Diffstat (limited to 'parser/parse.c')
| -rw-r--r-- | parser/parse.c | 21 |
1 files changed, 16 insertions, 5 deletions
diff --git a/parser/parse.c b/parser/parse.c index 33f80546..552221ca 100644 --- a/parser/parse.c +++ b/parser/parse.c @@ -79,16 +79,27 @@ void parse_register(ObParseInst *i, const gchar *tag, g_hash_table_insert(i->callbacks, c->tag, c); } -gboolean parse_load_rc(xmlDocPtr *doc, xmlNodePtr *root) +gboolean parse_load_rc(const gchar *file, xmlDocPtr *doc, xmlNodePtr *root, + gchar **fileused) { GSList *it; - gchar *path; gboolean r = FALSE; + *fileused = NULL; + for (it = xdg_config_dir_paths; !r && it; it = g_slist_next(it)) { - path = g_build_filename(it->data, "openbox", "rc.xml", NULL); - r = parse_load(path, "openbox_config", doc, root); - g_free(path); + if (file) { + if ((r = parse_load(file, "openbox_config", doc, root))) + *fileused = g_strdup(file); + } else { + gchar *path; + + path = g_build_filename(it->data, "openbox", "rc.xml", NULL); + if ((r = parse_load(path, "openbox_config", doc, root))) + *fileused = path; + else + g_free(path); + } } if (!r) g_warning("Unable to find a valid config file, using defaults"); |
