alexandrehtrb / Pororoca

An HTTP inspection tool with support for HTTP/2 and HTTP/3. Alternative to Postman.

Home Page:https://pororoca.io

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Deb not registered by Gnome

faveoled opened this issue · comments

After installing Pororoca it didn't appear in the list of apps:
image

Hey,

Thanks for reporting this issue, I will take a look.

In the meanwhile, you can use the linux-x64 version.

How did you install the package? Was it:

sudo apt install Pororoca_version_amd64.deb

Please try installing with the alternatives below:

sudo dpkg -i Pororoca_version_amd64.deb

or

sudo apt-get install ./Pororoca_version_amd64.deb

Tried all ways, same bad result.
I suggest you do the following: make pororoca a script in /usr/bin and simplify your desktop file with just pororoca call:

Exec=LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/lib/pororoca pororoca

I think Gnome can't parse this exec line and skips the app altogether

Alternatively you can use this line (tested and works with Gnome):

Exec=env LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/lib/pororoca pororoca

Solved

The .debpackage for release 3.0.1 has been updated and fixes this issue

I used your suggestion of the script, thanks for the tip!