linuxmint/webapp-manager

Falkon parameters are wrong

Opened this issue · 2 comments

When creating a web app with Falkon, webapp-manager build the desktop file using non-existent parameters (maybe they worked in an older release of Falkon, I don't know).
The result is that Falkon starts with the default profile and does not open the given URL .

This is the command line that is created by webapp-manager:
falkon --app=https://xxx.xxx.xxx.xxx/ --class=WebApp-NAME_AMENDED --name=WebApp-NAME_AMENDED --user-data-dir=/home/cris/.local/share/ice/profiles/NAME_AMENDED

This is what instead works with recent releases of Falkon:
falkon --wmclass WebApp-NAME_AMENDED --profile=NAME_AMENDED --no-remote https://xxx.xxx.xxx.xxx/

Note that the profile will not be created in /home/$USER/.local/share/ice/profiles/, but in /home/$USER/.config/falkon/profiles/.

I am using Falkon 24.02.2 from KDE6 on linux openSUSE Tumbleweed.

Judging from ticket #188 the parameters were already different in KDE5.

Just finished creating PR #295

...and updated the fix, with PR #296