Uh oh!
There was an error while loading. Please reload this page.
feat(desktop): add setting to open links in external browser - #10310
feat(desktop): add setting to open links in external browser#10310mguttmann wants to merge 3 commits into
Conversation
The following comment was made by an LLM, it may be inaccurate: Potential Duplicate Found:PR #8523: feat(desktop): open external links in system browser instead of webview Why it's related:This PR appears to address the same feature - allowing users to open external links in the system browser instead of within the desktop app. PR #10310 seems to build upon or refine this concept by adding it as a configurable setting rather than always opening externally. |
mguttmann
commented
Jan 24, 2026
Thanks for flagging this! Yes, there's overlap with #8523. Here's a comparison:
This PR is intentionally minimal - just a Settings toggle without extra UI elements. PR #8523 has more features but is also more complex. Happy to defer to #8523 if the maintainers prefer that approach, or this could serve as a simpler alternative. The core click handler logic is similar in both. |
f1ae801 to
08fa7f7Comparemguttmann
commented
Feb 2, 2026
Rebased on latest Changes made during rebase:
|
mguttmann
commented
Feb 2, 2026
CI Status Update ✅All checks are passing:
Ready for review and merge. |
mguttmann
commented
Feb 2, 2026
Recreated cleanly from |
mguttmann
commented
Feb 2, 2026
Add a toggle in Settings > General > Desktop to open links in the system's default browser instead of within the app. - Desktop IPC handler for external link opening - Settings context: browser.openLinksExternally state - Settings UI: toggle in Desktop section - i18n: translations for all 15 languages
Remove flex-wrap and add flex-1 to the text container so the toggle switch stays inline even with long description text.
Closing this pull request because it has had no updates for more than 60 days. If you plan to continue working on it, feel free to reopen or open a new PR. |

Summary
Adds a new setting in Settings → General → Browser that allows users to choose whether clicking links should open them in the system's default browser (default) or within the desktop app.
Changes
BrowserSettingsinterface withopenLinksExternallyoptionScreenshots
The new setting appears in Settings → General → Browser section (desktop only).
Motivation
Currently, clicking on links in the desktop app opens them within the app itself. This can be frustrating when you want to open links in your default system browser instead, to use features like:
Closes#10309