Cross-platform frameless window based on Python and Qt
- Moving (the title bar area is draggable)
- Stretching
- Native window shadow
- Native window animations
- Win11 snap layout
pip install qutewindow
Here is a minimal example:
import sys
from PySide6.QtWidgets import QApplication
from qutewindow import QuteWindow
if __name__ == "__main__":
app = QApplication(sys.argv)
demo = QuteWindow()
demo.show()
sys.exit(app.exec())