mirror of
https://github.com/jgpaiva/GridMove.git
synced 2025-01-18 12:05:48 +00:00
18 lines
287 B
AutoHotkey
18 lines
287 B
AutoHotkey
;MaximizeWindow
|
|
;By jgpaiva
|
|
;January 2006
|
|
;Function: Maximizes windows on the screen where the mouse is
|
|
SetWinDelay,-1
|
|
|
|
#notrayicon
|
|
|
|
monitor = %1%
|
|
|
|
SysGet,Monitor,Monitor,%Monitor%
|
|
|
|
WinRestore,A
|
|
|
|
WinMove,A,,%MonitorLeft%,%MonitorTop%,%WinW%,%WinH%
|
|
WinMaximize,A
|
|
exitapp
|