I created a simple python script to change my ubuntu wallpaper. I want to this script run after whenever I logged in.
- I tried to add command in startup application as
python /bin/wallpaper_changer.py
but it doesn't work. - I also tried to add a desktop entry in
~/.config/autostart/Myscript.desktop
but it also doesn't work. - I also added this file path in crontab using
sudo crontab -e
@reboot python /bin/wallpaper_changer.py
it also doesn't work. - I added entry in rc.local as
python /bin/wallpaper_changer.py
it also doesn't work