9 lines
207 B
Python
9 lines
207 B
Python
#!/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) |