From bc2db7f62c39dcbb6e6f1f8e489f5500c752d272 Mon Sep 17 00:00:00 2001 From: Timothy Cole Date: Mon, 22 Apr 2019 11:40:00 -0400 Subject: [PATCH] Added google-chrome-stable to openBrowser Closes: #32 --- main.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/main.go b/main.go index fc46c1b..fdf4145 100644 --- a/main.go +++ b/main.go @@ -180,6 +180,8 @@ func openBrowser(url string) { switch { case commandExists("google-chrome"): openCmd = exec.Command("google-chrome", chromeOptions(url)...) + case commandExists("google-chrome-stable"): + openCmd = exec.Command("google-chrome-stable", chromeOptions(url)...) case commandExists("chromium"): openCmd = exec.Command("chromium", chromeOptions(url)...) case commandExists("chromium-browser"):