AutoHotKey resize window to 1080p or 720p with Win+\ or Win+Shift+\ respectively
Create ahk file with the following two entries:
#\:: ; [Win]+[\]
WinGet, window, ID, A
WinMove, ahk_id %window%, , , , 1920, 1080
return
#+\:: ; [Win]+[Shift]+[\]
WinGet, window, ID, A
WinMove, ahk_id %window%, , , , 1280, 720
return
Update for AHK v2
#\:: ; [Win]+[\]
{
WinMove(, , 1920, 1080, "A")
}
#+\:: ; [Win]+[Shift]+[\]
{
WinMove(, , 1280, 720, "A")
}