2022-06-28 17:52:32 +02:00
|
|
|
#!/usr/bin/python3
|
|
|
|
|
|
|
|
# display all images and reset
|
|
|
|
|
|
|
|
import os
|
|
|
|
import time
|
|
|
|
|
2022-06-30 09:25:12 +00:00
|
|
|
size = "1024x600"
|
2022-06-28 17:57:42 +02:00
|
|
|
#size = "1920x1080"
|
2022-06-28 17:52:32 +02:00
|
|
|
|
2022-06-30 09:34:58 +00:00
|
|
|
images = ["pandora-box1.png", "pandora-box2.png", "pandora-box3.png", "pandora-box4.png", "pandora-box5.png"]
|
2022-06-28 17:52:32 +02:00
|
|
|
|
|
|
|
for image in images :
|
2022-06-28 17:57:42 +02:00
|
|
|
os.system("convert -resize %s -background black -gravity center -extent %s %s bgra:/dev/fb0" % (size, size, image))
|
2022-06-28 17:52:32 +02:00
|
|
|
time.sleep(1)
|
|
|
|
|
|
|
|
os.system("reset")
|
|
|
|
|
|
|
|
|