Skip to content

Instantly share code, notes, and snippets.

View Robert-Beier's full-sized avatar

Robert Beier Robert-Beier

  • Leipzig
View GitHub Profile
@Robert-Beier
Robert-Beier / english_international_mac_keyboard_layout_for_windows.ahk
Last active August 9, 2023 07:10
AutoHotkey script allowing the English International keyboard shortcuts for umlaute (ä, ö, ü) and eszett (ß) on windows
; Alt+S -> ß
!s:: Send ß
return
; Alt+U followed by A -> ä
; Alt+U followed by Shift+A -> Ä
; Alt+U followed by O -> ö
; Alt+U followed by Shift+O -> Ö
; Alt+U followed by U -> ü
; Alt+U followed by Shift+U -> Ü
@Robert-Beier
Robert-Beier / outdated_umlaute_and_eszett.ahk
Last active August 2, 2023 09:45
(outdated) Script for AutoHotkey to write german umlaute(ä, ö, ü) and eszett (ß) on US Keyboard on Windows like on MacOS
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
; #Warn ; Enable warnings to assist with detecting common errors.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
!u::Return ; umlaut
!s::SendInput % "ß"
*u::umlaut("u","ü","Ü")
*a::umlaut("a","ä","Ä")