Open Akregator links in external web browser with reading view [Both flatpak]
I was wondering if anyone else has encountered the same issue as I have. I know how I would approach this if Akregator was installed on the system rather than as a flatpak, I would just change the command run by the app when opening in an external browser to flatpak run org.mozilla.firefox about:reader?url=%u which just appends the about:reader portion to automatically open it as such. This command does work from my terminal but naturally does not work with Akregator.
Any help would be greatly appreciated!
5 replies
Thanks for posting about this! I never thought to try this as an Akregator user, but it's a great idea... I spent the past day getting this to work since I also use the Flatpaks; hope it helps.
As suggested by @[email protected], one solution is to define a custom protocol where the URL gets passed to a script that opens Firefox Reader with the URL; here's what I've done:
xdg-opensince that should be available to the Flatpak. I usedfirefox-readeras the protocol, so I putxdg-open firefox-reader://%uas the custom command (so a command Akregator would run might look likexdg-open firefox-reader://https://example.com).~/.local/share/applicationsis the standard place to put these, as far as I'm aware. Since the custom protocol needs to be removed from the URL, I wrote a script (also below) to do this and then call Firefox withabout:reader?url=prefixed. The script can be anywhere in$PATH.xdg-mime default org.mozilla.firefox.reader.desktop x-scheme-handler/firefox-reader(org.mozilla.firefox.reader.desktopis the name of my desktop entry file).update-desktop-database ~/.local/share/applicationssoxdg-openwould find the "Firefox Reader" desktop entry.::: spoiler My Firefox Reader desktop entry
:::
::: spoiler open-firefox-reader.sh script
:::
If you have any other trouble or want to find more information about this since the desktop entry could probably be tweaked, here are the sources of note I used to figure this out (If I forgot a step or two writing this, they should also be present somewhere in there):
Thank you for the very thorough reply! For god knows what reason I get this error:
error: app/org.mozilla.firefox/x86_64/stable not installedwhen running the xdg-open firefox-reader command, yet manually runningflatpak run --user org.mozilla.firefox about:reader?url=https://example.comworks just fine. I'll have to troubleshoot it when I have a bit more time ;pThanks again for your very thorough write up and the linked articles. Have a good day :)
Update: It seems like on my system, the
--userflag was the issue, removing it made the script function. I am using Fedora Kinoite (Immutable version of KDE Plasma), so perhaps it is just a difference in how flatpak is configured between distros? I'll have to read into it more later.Cheers, glad to hear you got it working. I don't think there's any problem on your end; all my flatpaks are user-installed as a Guix System user, so it didn't cross my mind that a habitually-placed
--userflag would not work if something was installed system-wide!Maybe you can register a custom protocol and have your own script outside of flatpak that runs firefox. Then use an xdg-open command that prefixes the custom protocol.
This is 100% a firefox question, you may want to rephrase it and ask in a firefox forum.