How do I Install appimage and .run files system wide (similar to on Manjaro)?

Solution 1:

Basically, you have to put the binary file into a location that everyone can see. Assuming that you have already marked the file as executable, you could put the file into /usr/local/bin with a command like

sudo cp <path to appimage file> /usr/local/bin/

The .run files are a little harder, as you will have to determine what they are doing, before you can make them available system wide. This can vary from file to file.