1
0
Fork 0
mirror of https://github.com/dbarzin/pandora-box.git synced 2025-07-21 06:19:42 +02:00
pandora-box/images/images.py

20 lines
381 B
Python
Raw Normal View History

2022-06-28 17:52:32 +02:00
#!/usr/bin/python3
# display all images and reset
import os
import time
2022-06-28 17:57:42 +02:00
size = "1020x600"
#size = "1920x1080"
2022-06-28 17:52:32 +02:00
images = ["pandora-box1.png", "pandora-box2.png", "pandora-box3.png", "pandora-box4.png"]
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")