My Script
#!/bin/bash
export DISPLAY=:0
my-application start &
chvt 7
- I've tried sticking it in my
/etc/init.d
directory. (without success) - Also tried to put it in my
rc.local
file. (that also didnt work) - The script itself does run if I run it myself after startup.
- Im also open to figuring out a new way to run my application at startup
@reboot
option. Similar task here (look at the third section). – pa4080 Sep 19 '17 at 20:19heres a reference http://upstart.ubuntu.com/getting-started.html
– Jermayne Williams Oct 16 '17 at 17:04