added icons

This commit is contained in:
2023-01-06 01:40:57 +01:00
parent 343b00ceef
commit b07bc06a4b
10 changed files with 27 additions and 10 deletions

View File

@@ -71,7 +71,7 @@ class MainWindow(QMainWindow):
def __init__(self):
super().__init__()
# self.setWindowFlag(QtCore.Qt.FramelessWindowHint)
self.setWindowFlag(QtCore.Qt.FramelessWindowHint)
self.setWindowFlag(QtCore.Qt.WindowStaysOnTopHint)
self.setAttribute(QtCore.Qt.WA_TranslucentBackground)
@@ -96,7 +96,12 @@ class MainWindow(QMainWindow):
def start_app():
app = QApplication(sys.argv)
qdarktheme.setup_theme()
qss = """QToolTip {
background-color: black;
color: white;
border: black solid 1px
}"""
qdarktheme.setup_theme(additional_qss=qss, custom_colors={"primary": "#eda65a"})
# app.setStyle('Material')
window = MainWindow()