Skip to content

Instantly share code, notes, and snippets.

View ivanstepanovftw's full-sized avatar

ivanstepanovftw

View GitHub Profile
@ivanstepanovftw
ivanstepanovftw / CapsLock Language Switcher.ahk
Created July 5, 2025 11:56
Windows `setxkbmap -option "grp:caps_toggle"` alternative.
#Requires AutoHotkey v2.0
SetCapsLockState "AlwaysOff"
CapsLock::
{
DllCall("PostMessage", "Ptr", 0xFFFF, "UInt", 0x50, "Ptr", 1, "Ptr", 0)
}