make() の中

for の前
q = re.compile('([\d]+)', re.I | re.M | re.S)
w, h, x, y = map(int, q.findall(root.geometry()))

for の後
root.geometry(f'{w}x{h+125}+{x}+{y}')