package browser import ( "os/exec" ) func openBrowser(url string) error { cmd := exec.Command("xdg-open", url) return cmd.Run() }