Skip to content

Instantly share code, notes, and snippets.

View Lxtharia's full-sized avatar
💜
funky

Lxtharia

💜
funky
View GitHub Profile
@Lxtharia
Lxtharia / WindowHJKL.ahk
Created September 26, 2024 10:16
Autohotkey script to move around (focus) visible windows on Windows using Win+hjkl
#Requires AutoHotkey v2.0
; Window styles for easier filtering of valid windows
styles := Map(
"WS_BORDER", 0x800000, "WS_POPUP", 0x80000000,
"WS_CAPTION", 0xC00000, "WS_CLIPSIBLINGS", 0x4000000,
"WS_DISABLED", 0x8000000, "WS_DLGFRAME", 0x400000,
"WS_GROUP", 0x20000, "WS_HSCROLL", 0x100000,
"WS_MAXIMIZE", 0x1000000, "WS_MAXIMIZEBOX", 0x10000,
"WS_MINIMIZE", 0x20000000, "WS_MINIMIZEBOX", 0x20000,