]> Dogcows Code - chaz/openbox/blobdiff - src/main.cc
exec stuff with "exec " so the sh isnt left over in memory for each process
[chaz/openbox] / src / main.cc
index e213c8085b87cc9cf460a7ddae41218a358b5505..47debac1f1e53a21d51917753def70488a75742a 100644 (file)
@@ -61,11 +61,12 @@ I18n i18n; // initialized in main
 static void showHelp(int exitval) {
   // print program usage and command line options
   printf(i18n(mainSet, mainUsage,
-              "Blackbox %s : (c) 2001 - 2002 Sean 'Shaleh' Perry\n"
-              "\t\t\t  1997 - 2000, 2002 Brad Hughes\n\n"
+              "Openbox %s : (c) 2002 - 2002 Ben Jansens\n"
+              "                    2001 - 2002 Sean 'Shaleh' Perry\n"
+              "                    1997 - 2000, 2002 Brad Hughes\n\n"
               "  -display <string>\t\tuse display connection.\n"
               "  -rc <string>\t\t\tuse alternate resource file.\n"
-              "  -menu <string>\t\t\tuse alternate menu file.\n"
+              "  -menu <string>\t\tuse alternate menu file.\n"
               "  -version\t\t\tdisplay version and exit.\n"
               "  -help\t\t\t\tdisplay this help text and exit.\n\n"),
          __openbox_version);
@@ -104,7 +105,7 @@ int main(int argc, char **argv) {
   char *rc_file = (char *) 0;
   char *menu_file = (char *) 0;
 
-  i18n.openCatalog("blackbox.cat");
+  i18n.openCatalog("openbox.cat");
 
   for (int i = 1; i < argc; ++i) {
     if (! strcmp(argv[i], "-rc")) {
@@ -154,8 +155,9 @@ int main(int argc, char **argv) {
       }
     } else if (! strcmp(argv[i], "-version")) {
       // print current version string
-      printf("Blackbox %s : (c) 2001 - 2002 Sean 'Shaleh' Perry\n",
-             "\t\t\t   1997 - 2000 Brad Hughes\n"
+      printf("Openbox %s : (c) 2002 - 2002 Ben Jansens\n"
+             "                    2001 - 2002 Sean 'Shaleh' Perry\n"
+             "                    1997 - 2000, 2002 Brad Hughes\n\n",
              __openbox_version);
 
       ::exit(0);
This page took 0.024053 seconds and 4 git commands to generate.