Skip to content

Instantly share code, notes, and snippets.

@ahmetlii
Created March 5, 2026 19:56
Show Gist options
  • Select an option

  • Save ahmetlii/8ae4c757089e162a6bae49f0d016efdc to your computer and use it in GitHub Desktop.

Select an option

Save ahmetlii/8ae4c757089e162a6bae49f0d016efdc to your computer and use it in GitHub Desktop.
AutoHotKey script for using missing Turkish characters in German QWERTZ
; Simple script for Turkish characters missing in German QWERTZ as well as changing O/U/Y/Z for ergonomics.
; Can be unlocked via AltGr+(character)
; Public Domain, 2026
#Requires AutoHotkey v2.0
>!c::ç
>!g::ğ
>!s::ş
>!i::ı
;already existing keys
>!y::z
>!z::y
>!o::ö
>!u::ü
#HotIf GetKeyState("CapsLock", "T")
>!i::İ
; OTHER NON-SPECIAL CASES
>!c::Ç
>!g::Ğ
>!s::Ş
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment