Files
grum/grum.py
T
2022-12-16 16:06:44 +01:00

20 lines
252 B
Python
Executable File

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