>>1849680if you're still watching this thread.
this should be used as an example. ill assume you're using loonix. add the script to your crontab so it runs once an hour
you'll need to have feh installed for the script to work. wallpaper for second screen is commented out
[code:lit]
#!/bin/bash
# 6 A.M. > 8 P.M.
screen1a=./picture.png
#screen1b=../picture2.png
# 9 P.M. > 11 P.M.
screen2a=./picture.png
#screen2b=./picture2.png
# Midnight
screen3a=./picture.png
#screen3b=../picture2.png
# 1 A.M. > 5 A.M.
screen4a=./picture.png
#screen4b=./picture2.png
date=`date +%H`
case $date in
# 1 A.M. > 5 A.M.
0[1-5])
cd /home/username/Pictures/Wallpapers/
DISPLAY=:0 feh --bg-scale $screen4a #--bg-scale $screen4b
;;
# 6 A.M. > 9 A.M.
0[6-9])
cd /home/username/Pictures/Wallpapers/
DISPLAY=:0 feh --bg-scale $screen1a #--bg-scale $screen1b
;;
# 10 A.M. > 7 P.M.
1[0-9])
cd /home/username/Pictures/Wallpapers/
DISPLAY=:0 feh --bg-scale $screen1a #--bg-scale $screen1b
;;
# 8 P.M.
20)
cd /home/username/Pictures/Wallpapers/
DISPLAY=:0 feh --bg-scale $screen1a #--bg-scale $screen1b
;;
# 9 P.M. > 11 P.M.
2[1-3])
cd /home/username/Pictures/Wallpapers/
DISPLAY=:0 feh --bg-scale $screen2a #--bg-scale $screen2b
;;
# 12 A.M. MidNight
00)
cd /home/username/Pictures/Wallpapers/
DISPLAY=:0 feh --bg-scale $screen3a #--bg-scale $screen3b
;;
esac
[/code:lit]