qt-material/test/generator.py
2020-12-05 21:41:47 -05:00

24 lines
565 B
Python

import os
from qt_material import list_themes
themes = list_themes()
themes = [t.replace('.xml', '') for t in themes]
for theme in themes:
os.system(f'python main.py --pyside {theme}')
os.chdir('screenshots')
commands = (
'convert -delay 100 light_* light.gif',
'convert -delay 100 dark_* dark.gif',
'rm ../../docs/source/images/light.gif',
'rm ../../docs/source/images/dark.gif',
'cp light.gif ../../docs/source/images/light.gif',
'cp dark.gif ../../docs/source/images/dark.gif',
)
for command in commands:
os.system(command)