X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=openbox%2Fopenbox.c;h=9de780dd47aa4d07999ef175ea6349265c1967ab;hb=4e590eba236c587caff22d8cfc3a8fc0332cb206;hp=74842614c31eb7024de22061ac852fdf9ab0d398;hpb=2442cdfd85e5229c7ee4ac49ca66a7d55ffcb919;p=chaz%2Fopenbox diff --git a/openbox/openbox.c b/openbox/openbox.c index 74842614..9de780dd 100644 --- a/openbox/openbox.c +++ b/openbox/openbox.c @@ -111,7 +111,7 @@ gint main(gint argc, gchar **argv) g_set_prgname(argv[0]); if (chdir(g_get_home_dir()) == -1) - g_message(_("Unable to change to home directory (%s): %s"), + g_message(_("Unable to change to home directory '%s': %s"), g_get_home_dir(), g_strerror(errno)); /* parse out command line args */ @@ -226,8 +226,7 @@ gint main(gint argc, gchar **argv) openbox_rc, config_file); parse_tree(i, doc, node->xmlChildrenNode); } else { - g_message(_("Unable to find a valid config file, using " - "some simple defaults")); + g_message(_("Unable to find a valid config file, using some simple defaults")); PROP_ERASE(RootWindow(ob_display, ob_screen), openbox_rc); } /* we're done with parsing now, kill it */ @@ -242,7 +241,8 @@ gint main(gint argc, gchar **argv) config_font_activewindow, config_font_inactivewindow, config_font_menutitle, - config_font_menuitem))) + config_font_menuitem, + config_font_osd))) { RrThemeFree(ob_rr_theme); ob_rr_theme = theme; @@ -346,8 +346,9 @@ gint main(gint argc, gchar **argv) execvp(argvp[0], argvp); g_strfreev(argvp); } else { - g_message(_("Restart failed to execute new executable " - "'%s': %s"), restart_path, err->message); + g_message( + _("Restart failed to execute new executable '%s': %s"), + restart_path, err->message); g_error_free(err); } } @@ -397,30 +398,23 @@ static void print_version() static void print_help() { - g_print(_("Syntax: openbox [options]\n\n")); - g_print(_("Options:\n\n")); - g_print(_(" --reconfigure Tell the currently running instance of " - "Openbox to\n" - " reconfigure (and then exit " - "immediately)\n")); - g_print(_(" --config-file FILE Specify the file to load for the config " - "file\n")); + g_print(_("Syntax: openbox [options]\n")); + g_print(_("\nOptions:\n\n")); + g_print(_(" --config-file FILE Specify the file to load for the config file\n")); #ifdef USE_SM - g_print(_(" --sm-disable Disable connection to session " - "manager\n")); + g_print(_(" --sm-disable Disable connection to session manager\n")); g_print(_(" --sm-client-id ID Specify session management ID\n")); - g_print(_(" --sm-save-file FILE Specify file to load a saved session" - "from\n")); + g_print(_(" --sm-save-file FILE Specify file to load a saved session from\n")); #endif - g_print(_(" --replace Replace the currently running window " - "manager\n")); + g_print(_(" --replace Replace the currently running window manager\n")); g_print(_(" --help Display this help and exit\n")); g_print(_(" --version Display the version and exit\n")); - g_print(_(" --sync Run in synchronous mode (this is slow and" - " meant for\n" - " debugging X routines)\n")); + g_print(_("\nPassing messages to a running Openbox instance:\n\n")); + g_print(_(" --reconfigure Reload Openbox's configuration\n")); + g_print(_("\nDebugging options:\n\n")); + g_print(_(" --sync Run in synchronous mode\n")); g_print(_(" --debug Display debugging output\n")); - g_print(_(" --debug-focus Display debugging output\n")); + g_print(_(" --debug-focus Display debugging output for focus handling\n")); g_print(_("\nPlease report bugs at %s\n\n"), PACKAGE_BUGREPORT); }