]> Dogcows Code - chaz/openbox/commitdiff
switch to using a command line variable instead, for the restart binary, just remove...
authorDana Jansens <danakj@orodu.net>
Mon, 7 May 2007 01:57:10 +0000 (01:57 +0000)
committerDana Jansens <danakj@orodu.net>
Mon, 7 May 2007 01:57:10 +0000 (01:57 +0000)
drop the reconfigure notify pid for now

data/xsession/openbox-gnome
data/xsession/openbox-kde
openbox/openbox.c

index 03a22d3fffd76dbd6e7b157241a918dc3cf3bb7b..c146aa814b527c340e7729dcb7acc5afae560fe8 100755 (executable)
@@ -1,5 +1,4 @@
 #!/bin/sh
 
 # A temporary script to be replaced by a real program..
-export OPENBOX_RESTART_BINARY=openbox-gnome
-exec openbox "$@"
+exec openbox --restart-binary openbox-gnome "$@"
index a3b603ac1f429c668538398f00b6957ad3061cba..87a5812cd065835a5ef5996e175cc0553e892932 100755 (executable)
@@ -1,5 +1,4 @@
 #!/bin/sh
 
 # A temporary script to be replaced by a real program..
-export OPENBOX_RESTART_BINARY=openbox-kde
-exec openbox "$@"
+exec openbox --restart-binary openbox-kde "$@"
index 198d073599a22b2068e64c15453077257a97386d..9cb38b562db417e2f1980603d5db9fabb61463e8 100644 (file)
@@ -96,10 +96,8 @@ static gint      exitcode = 0;
 static guint     remote_control = 0;
 static gboolean  being_replaced = FALSE;
 static gchar    *config_type = NULL;
-static pid_t     reconfigure_notify = 0;
 
 static void signal_handler(gint signal, gpointer data);
-static void parse_env(char **argv0);
 static void remove_args(gint *argc, gchar **argv, gint index, gint num);
 static void parse_args(gint *argc, gchar **argv);
 static Cursor load_cursor(const gchar *name, guint fontval);
@@ -121,15 +119,12 @@ gint main(gint argc, gchar **argv)
         g_message(_("Unable to change to home directory '%s': %s"),
                   g_get_home_dir(), g_strerror(errno));
      
-    /* parse the environment first, it can change the argv[0] */
-    parse_env(&argv[0]);
+    /* parse the command line args, which can change the argv[0] */
+    parse_args(&argc, argv);
 
     program_name = g_path_get_basename(argv[0]);
     g_set_prgname(program_name);
 
-    /* parse the command line args */
-    parse_args(&argc, argv);
-
     if (!remote_control) {
         parse_paths_startup();
 
@@ -469,9 +464,6 @@ static void print_help()
     g_print(_("  --version           Display the version and exit\n"));
     g_print(_("\nPassing messages to a running Openbox instance:\n"));
     g_print(_("  --reconfigure       Reload Openbox's configuration\n"));
-    g_print(_("\nOptions for internal use:\n"));
-    g_print(_("  --sm-save-file FILE Specify file to load a saved session from\n"));
-    g_print(_("  --sm-client-id ID   Specify session management ID\n"));
     g_print(_("\nDebugging options:\n"));
     g_print(_("  --sync              Run in synchronous mode\n"));
     g_print(_("  --debug             Display debugging output\n"));
@@ -479,20 +471,6 @@ static void print_help()
     g_print(_("\nPlease report bugs at %s\n"), PACKAGE_BUGREPORT);
 }
 
-static void parse_env(gchar **argv0)
-{
-    const char *c;
-
-    /* pretend we are this other application */
-    if ((c = getenv("OPENBOX_RESTART_BINARY")))
-        *argv0 = g_strdup(c);
-    unsetenv("OPENBOX_RESTART_BINARY");
-
-    /* notify this application when openbox reconfigures */
-    if ((c = getenv("OPENBOX_RECONFIGURE_NOTIFY_PID")))
-        reconfigure_notify = (pid_t) atol(c);
-}
-
 static void remove_args(gint *argc, gchar **argv, gint index, gint num)
 {
     gint i;
@@ -547,7 +525,8 @@ static void parse_args(gint *argc, gchar **argv)
 #ifdef USE_SM
         else if (!strcmp(argv[i], "--sm-save-file")) {
             if (i == *argc - 1) /* no args left */
-                g_printerr(_("--sm-save-file requires an argument\n"));
+                /* not translated cuz it's sekret */
+                g_printerr("--sm-save-file requires an argument\n");
             else {
                 ob_sm_save_file = g_strdup(argv[i+1]);
                 remove_args(argc, argv, i, 2);
@@ -555,7 +534,8 @@ static void parse_args(gint *argc, gchar **argv)
             }
         } else if (!strcmp(argv[i], "--sm-client-id")) {
             if (i == *argc - 1) /* no args left */
-                g_printerr(_("--sm-client-id requires an argument\n"));
+                /* not translated cuz it's sekret */
+                g_printerr("--sm-client-id requires an argument\n");
             else {
                 ob_sm_id = g_strdup(argv[i+1]);
                 remove_args(argc, argv, i, 2);
@@ -565,7 +545,16 @@ static void parse_args(gint *argc, gchar **argv)
             ob_sm_use = FALSE;
         }
 #endif
-        else {
+        else if (!strcmp(argv[i], "--restart-binary")) {
+            if (i == *argc - 1) /* no args left */
+                /* not translated cuz it's sekret */
+                g_printerr("--restart-binary requires an argument\n");
+            else {
+                argv[0] = g_strdup(argv[i+1]);
+                remove_args(argc, argv, i, 2);
+                --i; /* this arg was removed so go back */
+            }
+        } else {
             /* this is a memleak.. oh well.. heh */
             gchar *err = g_strdup_printf
                 ("Invalid command line argument '%s'\n", argv[i]);
@@ -607,9 +596,6 @@ void ob_restart()
 
 void ob_reconfigure()
 {
-    if (reconfigure_notify)
-        kill(reconfigure_notify, SIGUSR2);
-
     reconfigure = TRUE;
     ob_exit(0);
 }
This page took 0.027231 seconds and 4 git commands to generate.