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

20 lines
387 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
format = "1020x600"
#format = "1920x1080"
images = ["pandora-box1.png", "pandora-box2.png", "pandora-box3.png", "pandora-box4.png"]
for image in images :
os.system("convert -resize %s -background black -gravity center -extent %s %s bgra:/dev/fb0" % (format,format,image))
time.sleep(1)
os.system("reset")