aboutsummaryrefslogtreecommitdiffstats
path: root/browser_linux.go
diff options
context:
space:
mode:
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) {}