window resize functionalliy (nice)

finally!
This commit is contained in:
2026-01-29 13:12:21 -05:00
parent de1b115a75
commit c0f43b4091
5 changed files with 69 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
#!/usr/bin/env python3
"""
Resize active window to Maximum preset (2400x3500)
"""
from resize_window import resize_active_window
if __name__ == "__main__":
resize_active_window(width=2400, height=3500)