Я б запропонував використовувати AutoHotkey .
Приклад сценарію, який робить саме те, про що ви запитували, вже був наданий у відповіді на інше запитання .
Ось код сценарію:
#!Up::CenterActiveWindow() ; if win+alt+↑ is pressed
CenterActiveWindow()
{
; Get the window handle from de active window.
winHandle := WinExist("A")
VarSetCapacity(monitorInfo, 40)
NumPut(40, monitorInfo)
; Get the current monitor from the active window handle.
monitorHandle := DllCall("MonitorFromWindow", "uint", winHandle, "uint", 0x2)
DllCall("GetMonitorInfo", "uint", monitorHandle, "uint", &monitorInfo)
; Get WorkArea bounding coordinates of the current monitor.
A_Left := NumGet(monitorInfo, 20, "Int")
A_Top := NumGet(monitorInfo, 24, "Int")
A_Right := NumGet(monitorInfo, 28, "Int")
A_Bottom := NumGet(monitorInfo, 32, "Int")
; Calculate window coordinates.
winW := (A_Right - A_Left) * 0.5 ; Change the factor here to your desired width.
winH := A_Bottom
winX := A_Left + (winW / 2)
winY := A_Top
WinMove, A,, winX, winY, winW, winH
}
Я здійснив невелике регулювання, щоб нижня частина вікна не зайшла під панель завдань, і змінила значення windowWidth
з 0,7 до 0,5.
Редагувати : зараз працює з декількома моніторами та використовує робочу область для верхнього та нижнього значень.
З іншого боку, WinSplit Revolution було припинено та замінено платним додатком під назвою MaxTo.
Окрім того, що є дуже потужним та охоплює значно більше випадків використання, AutoHotkey також є безкоштовним та відкритим кодом.