I have been trying to get my mono form application to autostart with the GUI and I have tried lots of methods shown on other threads but it just won't work.
I manually run a .sh script by double clicking on the file to run my mono application which has this command:
sudo mono /home/pi/Test/monoApp.exe
I tried xinitrc, LXDE-pi, crontab, rc.local but they didn't work.
sudo which monoto find the full path to mono and try using that full path in your scripts or crontab. – joan Jul 14 '17 at 10:47monoto/usr/bin/monobut nothing changed. The .sh file launches the application both withmonoand/usr/bin/monowhen double clicking. Can I launch the mono application by a python script? – Theoden Jul 14 '17 at 11:01