9 lines
206 B
Python
9 lines
206 B
Python
#!/usr/bin/env python3
|
|
"""
|
|
Resize active window to Medium preset (2300x2250)
|
|
"""
|
|
|
|
from resize_window import resize_active_window
|
|
|
|
if __name__ == "__main__":
|
|
resize_active_window(width=2300, height=2250) |