-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.py
More file actions
24 lines (23 loc) · 1.16 KB
/
app.py
File metadata and controls
24 lines (23 loc) · 1.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#|=========================================================== .=<|||>=. ==|#
#| |(:)||||| |#
#| app.py !!!!!!|||
#| /||||||||||||/.:::::,
#| By: ctrichet <clement.trichet.pro@gmail.com> |||||||!!!!!!/.:::::::
#| ||||||/.::::::::::::::
#| Created: 2025/09/22 16:07:05 ctrichet \|||/.::::::::::::::'
#| Updated: 2026/02/12 22:58:57 ctrichet :::......
#| :::::(|): |#
#|=========================================================== ':::::::' ==|#
import sys
from PyQt5.QtWidgets import QApplication
from ui.main_window import MainWindow
from ui.tab_bar import CustomTabBar
from styles.colors import styleSheet
if __name__ == "__main__":
app = QApplication(sys.argv)
app.setStyle("Windows")
app.setStyleSheet(styleSheet())
window = MainWindow()
CustomTabBar._window = window
window.show()
sys.exit(app.exec_())