I have been successful in launching KRITA 4.4.3 along with its plugins
using a simple script
I use fatdog linux but that shouldn't matter
Notes: I go to krita download site
https://binary-factory.kde.org/job/Krit ... age_Build/
and download
gmic_krita_qt-x86_64.appimage 35.17 MB
krita-4.4.3-alpha-c97c2b2-x86_64.appimage 218.26 MB
Avoid nightly versions!!!
Drag krita and gmic in /opt
You will have to change the script slightly to reflect newest name of krita ( the version changes)
Put the script in /opt too and run it
If everything is okay then gmic will first launch then krita will a couple of seconds later
#!/bin/sh
# first launch gmic plugins
cd /opt
LD_LIBRARY_PATH= ./gmic_krita_qt-x86_64.appimage &
sleep 2 # need time to mount image# make change to kritarc
cd /tmp
A=`ls -d .mount_gmic*`
B=/tmp/"$A"/usr/bin/gmic_krita_qt#sed -e '/gmic/d' /root/.config/kritarc >/root/.config/kritarc-tmp # remove any line with gmic
#Xdialog --title "$(gettext 'gmic path')" --auto-placement --editbox "/tmp/tmpgmicpath" 25 70echo -e "sed -i 's|gmic_qt_plugin_path=.*|gmic_qt_plugin_path=$B|' /root/.config/kritarc" >/tmp/kritacommand
chmod 777 /tmp/kritacommand
/tmp/kritacommand# now launch krita
cd /opt
LD_LIBRARY_PATH= ./krita-4.4.3-alpha-c97c2b2-x86_64.appimage
_________________________________________________________