From: Daniel Carl Date: Sat, 8 Jun 2019 21:45:21 +0000 (+0200) Subject: Give --incognito option also to new spawned instances #562. X-Git-Url: https://git.owens.tech///git?a=commitdiff_plain;h=956ed26da5bb94afcd6cd4d4e7d70889179624fa;p=vimb.git Give --incognito option also to new spawned instances #562. --- diff --git a/src/main.c b/src/main.c index 15ca9f9..28f17e6 100644 --- a/src/main.c +++ b/src/main.c @@ -1046,6 +1046,9 @@ static void spawn_new_instance(const char *uri) cmd[i++] = xid; } #endif + if (vb.incognito) { + cmd[i++] = "-i"; + } if (vb.profile) { cmd[i++] = "-p"; cmd[i++] = vb.profile;