| 1234567891011121314151617181920212223242526272829 |
- #!/usr/bin/env python3
- """
- Countdown Timer Application
- A cross-platform PyQt6 application for creating and displaying fullscreen countdown timers.
- """
- import sys
- from PyQt6.QtWidgets import QApplication
- from PyQt6.QtCore import QSettings
- from ui.main_window import MainWindow
- def main():
- app = QApplication(sys.argv)
- app.setOrganizationName("CountdownTimer")
- app.setApplicationName("CountdownTimer")
-
- # Load settings
- settings = QSettings()
-
- # Create and show main window
- window = MainWindow()
- window.show()
-
- sys.exit(app.exec())
- if __name__ == "__main__":
- main()
|