all repos — openbox @ 90861d60f73c87e9459dd84b92e83993c4520366

openbox fork - make it a bit more like ryudo

parse <here>true</here> for the activate action
Dana Jansens danakj@orodu.net
commit

90861d60f73c87e9459dd84b92e83993c4520366

parent

60bf9dcdb752aa282e1ffd7bbb359df4a4c78e77

1 files changed, 3 insertions(+), 0 deletions(-)

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

@@ -716,6 +716,9 @@ }

} else if (act->func == action_send_to_desktop_dir) { if ((n = parse_find_node("wrap", node->xmlChildrenNode))) act->data.sendtodir.wrap = parse_bool(doc, n); + } else if (act->func == action_activate) { + if ((n = parse_find_node("here", node->xmlChildrenNode))) + act->data.activate.here = parse_bool(doc, n); } } g_free(actname);