From 09ed4ff7ca5b92243f268ebb2c80811c5ad36a0a Mon Sep 17 00:00:00 2001 From: Jan Lerking Date: Tue, 23 Apr 2024 13:42:21 +0200 Subject: [PATCH] Update. /JL --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index 02f811a..f1e53d5 100644 --- a/main.go +++ b/main.go @@ -16,7 +16,7 @@ func openBrowser(url string) bool { case "darwin": args = []string{"open"} case "windows": - args = []string{"cmd", "/c", "start", "chrome"} + args = []string{"cmd", "/c", "start", "chrome", "--new-window"} default: args = []string{"xdg-open"} }