aboutsummaryrefslogtreecommitdiffstats
path: root/browser_linux.go
diff options
context:
space:
mode:
authorJoshua Searles2018-09-15 18:49:56 -0400
committerJoshua Searles2018-09-15 18:49:56 -0400
commit755be2c54b4e61b204e8a89c9464e0fe13eae057 (patch)
treeae42ab57e1d38496752b1d07961f56d93bf82159 /browser_linux.go
parentc90ca0c84f15f81c982e32665bffd8d7aac8f097 (diff)
downloadbrowser-755be2c54b4e61b204e8a89c9464e0fe13eae057.tar.bz2
Hide console in windows when launching process
Diffstat (limited to 'browser_linux.go')
-rw-r--r--browser_linux.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/browser_linux.go b/browser_linux.go
index bed47dd..656c693 100644
--- a/browser_linux.go
+++ b/browser_linux.go
@@ -1,5 +1,9 @@
package browser
+import "os/exec"
+
func openBrowser(url string) error {
return runCmd("xdg-open", url)
}
+
+func setFlags(cmd *exec.Cmd) {}