You should not use AppImage in production
For Normal Use
You can speed up any AppImage startup by extracting the contents with the command:
Inkscape.AppImage -
-appimage-extract
This will create a new folder in this directory called
squashfs-root
And inside this folder will be a bash file which you can run
AppRun
If you create a link from this script, you will be able to run this version of Inkscape much more quickly, avoiding the startup penalties of extracting all the data.
For Command Line
If you run scripts in command line and want to bypass the decompresing time you can use this order as path just change the name of the appimage and tweak your app parameters:
b=`mount | grep "Inkscape.AppImage"`;a=($b);cd ${a[2]};./AppRun --actions="spread-inkscape"