Created
March 5, 2026 19:56
-
-
Save ahmetlii/8ae4c757089e162a6bae49f0d016efdc to your computer and use it in GitHub Desktop.
AutoHotKey script for using missing Turkish characters in German QWERTZ
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ; 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