This bash script helps install .AppImage files on your session. You should have at the end the desktop icon in your applications.
.AppImage format may require FUSE to work properly.
You can check if it is installed with this command:
which fusermountIf nothing returns, consider to install it.
sudo apt update
sudo apt install fuse3- Clone the repository
git clone https://github.com/SwaonD/appimage_installer.git- Install the .AppImage
./appimage_installer/main.sh <my_file>.AppImageTo be able to use the script with the command appimage-install.
- Run the installer
./appimage_installer/install.sh- Add the binary directory to the PATH
echo "PATH=$PATH:~/.local/bin" >> ~/.profile- Reset profile
source ~/.profileappimage-install <my_file>.AppImageEvery variables are in the src/variables.sh file, including the directory path used to store the applications (APP_DIR).