Not specific to your problems but:
[shameless self promotion]
Running A Program At Start Up A Beginner's Guide especially the troubleshooting advice.
[/shameless self promotion]
Assuming you're using RPi OS (tell us if you're not) have you configured your OS to use the X11 desktop rather than the default Wayland with Labwc one? If not your chosen autostart method will not be working.
There's also some issues with your bash script:
[shameless self promotion]
Running A Program At Start Up A Beginner's Guide especially the troubleshooting advice.
[/shameless self promotion]
Assuming you're using RPi OS (tell us if you're not) have you configured your OS to use the X11 desktop rather than the default Wayland with Labwc one? If not your chosen autostart method will not be working.
There's also some issues with your bash script:
- does not need the leading "." Given the cd / that precedes it, it doesn't need the leading / on either path either.
Code:
./home/test/Desktop/program.arm64 >> /home/test/Desktop/log.txt - The same line only redirects stdout. That means any error message will not be captured.
- could do with a leading / before the first home. I'd expect it to work as is but put it in for consistency.
Code:
python3 home/test/Desktop/input_script.py >> /home/test/Desktop/pylog.txt - The same line only redirects stdout. That means any error message will not be captured.
Statistics: Posted by thagrol — Thu Jul 24, 2025 8:24 pm