Re: Appimage and/or flatpack to replace some distro specifik packagings?
Is it possible to launch the appimages with some parameter or other trick to make them use different folders of symbols, templates, drawings?
Yes !
By example : If I want to use new folder "test-0.5" in my HOME QET directory, you need to add argument --config-dir= to your AppImage.
./QElectroTech_0.5-x86_64.AppImage --config-dir=/home/laurent/.qet/test-0.5/
Or If you want to use other common collection (--common-elements-dir argument) :
./QElectroTech_0.5-x86_64.AppImage --common-elements-dir=/home/laurent/0.5-test/
You could also extract Appimage and change QET arguments in AppRun file.
https://github.com/AppImage/AppImageKit … -AppImages
./QElectroTech_0.5-x86_64.AppImage --appimage-extract
/squashfs-root$ cat AppRun
#! /bin/sh
cd $(dirname $(readlink -f $0))/usr/bin/
exec ./qelectrotech --common-elements-dir=../share/elements/ --common-tbt-dir=../share/titleblocks/ --lang-dir=../share/lang/ $@
https://github.com/AppImage/AppImageKit … irectories