Appimage start, I don't want to press Y

https://i.imgur.com/3QRLeFo.png

I don’t want to press Y. In that case, you must press N every time. I want to skip this process and do it right away. Is there any way to command?

What operating system are you on?

When you set environment variable APPIMAGE_SILENT_INSTALL=false joplin will start without asking. I use a simple script ‘start-joplin’:

#!/bin/sh
export APPIMAGE_SILENT_INSTALL=false
joplin=`/bin/ls -1 /opt/Joplin-*-x86_64.AppImage |tail -1`
exec $joplin ${1+"$@"}

HTH

1 Like