Monday, Nov 14, 2022
AppImages are the most easiest to run compared. All you need to do is follow the steps mentioned below.
The challenging task is to make the AppImage accessible globally through he system like an installed application (in the menu)
you can achieve this by the going through the following steps.
[Desktop Entry]
Version=0.13.23
Type=Application
Name=appName
Comment=Application Description
TryExec=Path/to/AppImage
Exec=Path/to/AppImage
Icon=Path/to/AppImage.icon
Actions=Editor
and we are done.
Now you AppImage is available for you user in menu.
If you want this AppImage to be accessible to to all the user of the system, place the .desktop file in /usr/share/applications
As suggested by mahdavifar2002 in the comment you can enable the by renaming the filename in filename.desktop to the name of the app after it is running. It is also case sensitive. For example move the file "Outline-Manager.desktop" that is created to the file "Outline Manager.desktop" and then you will be able to pin in. (The "Name=" field inside .desktop file does not matter and it could be anything you wish.)
Feel free to comment any suggestion in comments section.