Allow multiple instances via command line option.

This commit is contained in:
2023-11-22 02:14:01 +01:00
parent a0b4b11180
commit 8e74871973

View File

@@ -29,9 +29,11 @@ static GtkStatusIcon *status_icon_or_null = NULL;
static XtmTaskManager *task_manager;
static guint timer_id;
static gboolean start_hidden = FALSE;
static gboolean standalone = FALSE;
static GOptionEntry main_entries[] = {
{ "start-hidden", 0, G_OPTION_FLAG_IN_MAIN, G_OPTION_ARG_NONE, &start_hidden, "Don't open a task manager window", NULL },
{ "standalone", 0, G_OPTION_FLAG_IN_MAIN, G_OPTION_ARG_NONE, &standalone, "Launch standalone", NULL },
{ NULL, 0, 0, 0, NULL, NULL, NULL }
};
@@ -231,7 +233,7 @@ int main (int argc, char *argv[])
}
g_option_context_free (opt_context);
app = g_application_new ("xfce.taskmanager", 0);
app = g_application_new ("xfce.taskmanager", standalone ? G_APPLICATION_NON_UNIQUE : G_APPLICATION_FLAGS_NONE);
g_application_register (G_APPLICATION (app), NULL, &error);
if (error != NULL)
{