16 lines
223 B
Python
Executable File
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())
|
|
|
|
|
|
|