I need to execute a script, myscript.sh
, at every reboot.
After crontab -e
I wrote:
@reboot /home/techy/Documents/myscript.sh
The file is executable after chmod 777 myscript.sh
, but I'm not able to get output from shell script.
My shell script is supposed to change the desktop background, and is working if executed from terminal.