ahk_scripts/myhotkeys.ahk
2021-11-28 19:02:16 +03:00

18 lines
486 B
AutoHotkey

; Just a collection of useful hotkeys to have around
; Primarily to resize windows for the games that don't let you set window resolution
#NoEnv
#Warn
SendMode Input
SetWorkingDir %A_ScriptDir%
#Include, _winresize.ahk
; always on top
#!t::Winset, Alwaysontop, , A
; usage: ResizeWin(Width,Height,ExtraW,ExtraH,WinW,WinH)
#!y::ResizeWin(1280,720)
#!u::ResizeWin(1920,1080)
;Horizon: Zero Dawn adds some extra pixels for no reason
;#!i::ResizeWin(1920,1080,8,8)