diff --git a/bunnysync.py b/bunnysync.py index 51ae4bb..5babead 100644 --- a/bunnysync.py +++ b/bunnysync.py @@ -13,4 +13,4 @@ if __name__ == '__main__': sys.exit(app.exec_()) -# pyinstaller --onefile bunnysync.py --add-data "images/realrabbit.png;images" --add-data "images/realrabbit2.png;images" --icon=images/realrabbit.png --noconsole \ No newline at end of file +# pyinstaller --onefile bunnysync.py --add-data "images/realrabbit.ico:images" --add-data "images/realrabbit2.png:images" --icon=images/realrabbit.png --noconsole \ No newline at end of file diff --git a/images/realrabbit.ico b/images/realrabbit.ico new file mode 100644 index 0000000..bf6359f Binary files /dev/null and b/images/realrabbit.ico differ diff --git a/main_window.py b/main_window.py index ef12d04..787085e 100644 --- a/main_window.py +++ b/main_window.py @@ -10,7 +10,7 @@ class MainWindow(QMainWindow): super().__init__() self.setWindowTitle("Bunny Sync Application") self.setGeometry(100, 100, 800, 600) - image_path = self.resource_path("images/realrabbit.png") + image_path = self.resource_path("images/realrabbit.ico") self.setWindowIcon(QIcon(image_path)) self.setup_ui()