diff --git a/src/Native/Linux.cs b/src/Native/Linux.cs index f6eb4ebf3..ab5977e1d 100644 --- a/src/Native/Linux.cs +++ b/src/Native/Linux.cs @@ -63,7 +63,10 @@ public string FindTerminal(Models.ShellOrTerminal shell) public void OpenBrowser(string url) { - Process.Start("xdg-open", url.Quoted()); + var browser = Environment.GetEnvironmentVariable("BROWSER"); + if (string.IsNullOrEmpty(browser)) + browser = "xdg-open"; + Process.Start(browser, url.Quoted()); } public void OpenInFileManager(string path, bool select)