Skip to content

Instantly share code, notes, and snippets.

View hujy23's full-sized avatar

hujy23

View GitHub Profile
@hujy23
hujy23 / better_dvorak.ahk
Created September 7, 2022 23:02 — forked from troynt/better_dvorak.ahk
Dvorak Autohotkey
; Use Scroll Lock to swap keyboard layouts
; and do not let Control, Alt, or Win modifiers act on Dvorak
Loop {
If GetKeyState("ScrollLock", "T")
and !GetKeyState("Control")
and !GetKeyState("Alt")
and !GetKeyState("LWin")
and !GetKeyState("RWin") {
Suspend, Off
} else {