You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
on some users i always use the urls like in the examples:
https://picsum.photos/${width}/${height}?random=${timestamp}
in the webbrowser (for instance: MS Edge, Chrome) there isnt any problem, and wallpanel shows up some pictures from picsum.
on the android fully kiosk app it didnt load pictures from the url. i cant tell why, just saw it after installing the fully app on a tablet. same tablet with browser is no problem.
its not directly a wallpanel HA problem in my opionion.
The text was updated successfully, but these errors were encountered:
this automation runs the script to download and clean folder files -> you can possible change the folder in the following script to your nas. but i leave it in home assistant and due to running out of file space i clean the files ones a week.
CONFIG YAML shell_command: download_picsum_image: > bash -c 'wget --header="Accept: image/jpg" --header="Accept: image/jpeg" -O "/media/pictures/Picsum/picsum_$(date +%s).jpg" "https://picsum.photos/1920/1080.jpg?nature?random=$(date +%s)"' clean_picsum_image: > bash -c "ls -1t /media/pictures/Picsum | tail -n +8 | xargs -I {} rm -f /media/pictures/Picsum/{}"
This is the whole script that downloads the pictures, you can try them at first within the terminal. Note that the folder Picsum is createt first by mkdir. every pictures is saved by the name picsum followed by date and time in seconds.
Picsum is not the best plattform yet but i hav´nt found a better free one.
Hey there,
found a new issue:
on some users i always use the urls like in the examples:
https://picsum.photos/${width}/${height}?random=${timestamp}
in the webbrowser (for instance: MS Edge, Chrome) there isnt any problem, and wallpanel shows up some pictures from picsum.
on the android fully kiosk app it didnt load pictures from the url. i cant tell why, just saw it after installing the fully app on a tablet. same tablet with browser is no problem.
its not directly a wallpanel HA problem in my opionion.
The text was updated successfully, but these errors were encountered: