summaryrefslogtreecommitdiff
path: root/myhotkeys.ahk
diff options
context:
space:
mode:
Diffstat (limited to 'myhotkeys.ahk')
-rw-r--r--myhotkeys.ahk18
1 files changed, 18 insertions, 0 deletions
diff --git a/myhotkeys.ahk b/myhotkeys.ahk
new file mode 100644
index 0000000..ed795b8
--- /dev/null
+++ b/myhotkeys.ahk
@@ -0,0 +1,18 @@
+; 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)