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