// +build darwin package main import ( "os" "path/filepath" ) // DefaultLib path for the operating system in question var DefaultLib string = filepath.Join(os.Getenv("HOME"), "Library/Application Support/Steam/steamapps") // BrowserCommand returns a []string containing the command that will start the // browser for a given url specific to the OS func BrowserCommand(url string) []string { return []string{"open", url} }