diff --git a/gui_main.py b/gui_main.py index 00f9166..1efafbd 100644 --- a/gui_main.py +++ b/gui_main.py @@ -25,7 +25,7 @@ def __init__(self): QMainWindow.__init__(self) self.setMinimumSize(QSize(240, 120)) - self.setWindowTitle("Vidify") + self.setWindowTitle("Vidify Web") centralWidget = QWidget(self) self.setCentralWidget(centralWidget) @@ -33,9 +33,17 @@ def __init__(self): gridLayout = QGridLayout() centralWidget.setLayout(gridLayout) - title = QLabel("The app will start in your browser soon!", self) + title = QLabel("Vidify Web is now running. A new tab will be opened in your browser!", self) title.setAlignment(QtCore.Qt.AlignCenter) + font = title.font() + font.setPointSize(15) + title.setFont(font) + + stopInst = QLabel("To stop the app just close this window.", self) + stopInst.setAlignment(QtCore.Qt.AlignCenter) + gridLayout.addWidget(title, 0, 0) + gridLayout.addWidget(stopInst, 1, 0) self.show() if __name__ == '__main__': diff --git a/templates/index.html b/templates/index.html index a5673be..d4f3550 100644 --- a/templates/index.html +++ b/templates/index.html @@ -11,7 +11,7 @@
Enjoy awesome visuals right in your browser while listening to the high-quality Spotify audio!
Maximize your browser for the best experience (F11, fn + F11 or ^⌘F and ⇧⌘F).