On my website I need to give users an ability to download and easily start my executable (AppImage binary) on Linux.
For Windows
version it is just .exe
which works after downloading and clicking:
- Download file
- Click on file in browser downloads panel to start it
For Linux user now needs to do following:
- Download file
- Open folder containing file from browser downloads panel
- Right click on it to add exec permission
- Click on "Allow execution of this file" checkbox
- Press Ok
- Click on file to start it
It is hard to explain this flow for regular user, it makes users leave away.
Is it possible to minimize it to minimal clicks as on Windows?
Any advises appreciated to achieve minimal clicks. I can compile app for any format (its on electron but I can process it before upload)
I thought about using .deb
. It will limit app for Debian-based only, but main problem in same time that I did not find ability to run post installation to exec app, and I don't want ask user to enter start menu.