Skip to content

Instantly share code, notes, and snippets.

@danielthiel
Last active August 29, 2015 14:19
Show Gist options
  • Save danielthiel/a4162a7d41fc4c23734d to your computer and use it in GitHub Desktop.
Save danielthiel/a4162a7d41fc4c23734d to your computer and use it in GitHub Desktop.
Remap Capslock to special characters via AutoHotkey (umlauts)
; Remap Umlaute
; http://www.autohotkey.com/
; 2015-04-21
SetCapsLockState AlwaysOff
Capslock::RAlt
>!+a::
Send, Ä
Return
>!+u::
Send, Ü
Return
>!+o::
Send, Ö
Return
>!a::
Send, ä
Return
>!u::
Send, ü
Return
>!o::
Send, ö
Return
>!s::
Send, ß
Return
>!e::
Send, €
Return
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment