# Copyright (C) 2026 Danilo M. # This program is free software: you can redistribute it and/or modify it # under the terms of the GNU General Public License version 2 as published # by the Free Software Foundation. """Entry point for hyprsunset-qt.""" import sys from PyQt6.QtWidgets import QApplication from .ui import MainWindow def main() -> int: app = QApplication(sys.argv) win = MainWindow() win.resize(640, 400) win.show() return app.exec() if __name__ == "__main__": sys.exit(main())