Easiest Way To Start Xojo Desktop App at startup?

After seen this topic App autostart , and see that it doesn’t work with last version of my new Pi, I look the net and found this solution.

For those who need to start their App at launch with Raspberry Pi, here is my method :

On the terminal : mkdir /home/<‘your home’>/bin

Copy the application inside

Now, on the terminal :
→ mkdir /home/<‘your home’>/.config/autostart
→ nano /home/<‘your home’>/.config/autostart/<‘your App Name’>.desktop (Like visualiseur.desktop)

insert the following content in the file <‘your App Name’>.desktop
[Desktop Entry]
Type=Application
Name=<‘your App Name’>
Exec=/home/<‘your home’>/bin/'<‘your App Name’>

Save the file using ‘Ctrl X’

reboot the Pi

2 Likes