20 lines
277 B
Python
Executable File
20 lines
277 B
Python
Executable File
#!/usr/bin/env python
|
|
|
|
import sys
|
|
from PyQt5.QtWidgets import QApplication
|
|
|
|
from grum import ctrl_c
|
|
from grum import theme
|
|
from grum.mainwin import MainWindow
|
|
|
|
|
|
app = QApplication(sys.argv)
|
|
theme.apply(app)
|
|
ctrl_c.setup(app)
|
|
mw = MainWindow()
|
|
mw.show()
|
|
sys.exit(app.exec())
|
|
|
|
|
|
|