mirror of
https://github.com/fishyboteso/fishyboteso.git
synced 2024-08-30 18:32:13 +00:00
6 lines
141 B
Python
6 lines
141 B
Python
import win32gui
|
|
X,Y,W,H = -8,0,815,608
|
|
|
|
hwnd = win32gui.FindWindow(None, "Elder Scrolls Online")
|
|
win32gui.MoveWindow(hwnd, X, Y, W, H, True)
|