all repos — openbox @ 67f9061a7a8d28b1859bc19baad5811d5310ae47

openbox fork - make it a bit more like ryudo

move the default menu to menu.xml
Dana Jansens danakj@orodu.net
commit

67f9061a7a8d28b1859bc19baad5811d5310ae47

parent

06fb4c7382a9c2a25e74adefbbc267417af5aadd

4 files changed, 4 insertions(+), 4 deletions(-)

jump to
M Makefile.amMakefile.am

@@ -259,7 +259,7 @@ ## data ##

dist_rc_DATA = \ data/rc.xml \ - data/menu + data/menu.xml dist_desktopfiles_DATA = \ data/openbox.desktop
M data/rc.xmldata/rc.xml

@@ -324,10 +324,10 @@ <!-- You can specify more than one menu file in here and they are all loaded,

just don't make menu ids clash or, well, it'll be kind of pointless --> <!-- debian menu file --> - <file>/etc/X11/openbox/openbox-menu</file> + <file>/etc/X11/openbox/openbox-menu.xml</file> <!-- default menu file (or custom one in $HOME/.openbox/) --> - <file>menu</file> + <file>menu.xml</file> </menu> </openbox_config>
M openbox/menu.copenbox/menu.c

@@ -92,7 +92,7 @@ xmlFreeDoc(doc);

} } if (!loaded) { - if (menu_open("menu", &doc, &node)) { + if (menu_open("menu.xml", &doc, &node)) { parse_tree(menu_parse_inst, doc, node->xmlChildrenNode); xmlFreeDoc(doc); }