Default web browser #164
-
Hello, I am using linux, manjaro cinnamon, and the most recent version of Pulsar in appimage format. I'm starting with Pulsar. When I open the menu about pulsar or any other, if I click on any link, for example "how to update" or "release notes" it opens them with a python virtual environment browser. The system has firefox configured by default, and I also have chrome installed. I don't see in the settings where I can set the default browser for Pulsar. If someone can tell me how to configure it, I would appreciate it. All the best. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
IIRC it should just open up in the default browser. That's interesting it doesn't, I'll try to have a look and see where this code is specified, but I believe it's within Electron itself. Have you seen this behavior on any other Electron based apps? (e.g. Discord, Bitwarden, Microsoft Teams, Atom) |
Beta Was this translation helpful? Give feedback.
Hi, I've been working on this and I think the problem is the way Pulsar searches for the default browser. I'm not quite sure, but it has to do with myme types and the way xdg-open works, and how cinnamon desktop set default apps.
I have created the file ~/.local/share/applications/mimeapp.list
with this content and now Pulsar opens the links with firefox, as I wanted.
[Default Applications]
text/html=firefox.desktop;
text/xml=firefox.desktop;
x-scheme-handler/http=firefox.desktop;
x-scheme-handler/https=firefox.desktop;
For my part the issue is resolved. A greeting and thanks for the attention, now to continue delving into Pulsar, it seems to me a great project.