Files
grum/grum.py
T
2022-12-15 15:06:32 +01:00

16 lines
223 B
Python
Executable File

#!/usr/bin/env python
import sys
from PyQt5.QtWidgets import QApplication
from mainwin import MainWindow
from theme import theme
app = QApplication(sys.argv)
theme(app)
mw = MainWindow()
mw.show()
sys.exit(app.exec())