Skip to content

Instantly share code, notes, and snippets.

@dahoba
Created September 13, 2024 04:40
Show Gist options
  • Save dahoba/941584e2c3bc95acac3c0ae8db57a9a2 to your computer and use it in GitHub Desktop.
Save dahoba/941584e2c3bc95acac3c0ae8db57a9a2 to your computer and use it in GitHub Desktop.
AutoHotkey 2, switch keyboard layout with caplock and natural scroll wheel
#Requires AutoHotkey v2.0
; switch keyboard layout with caplock
Capslock::
{
Send "{LShift down}{LAlt down}{LShift Up}{LAlt Up}"
; Send, {Shift Down}{Alt Down}{Alt Up}{Shift Up}
; SoundBeep 999, 1
}
; natural scroll wheel
WheelUp::Send "{WheelDown}"
WheelDown::Send "{WheelUp}"
; use window sniptools
PrintScreen::Send "#+s"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment