Skip to content

Instantly share code, notes, and snippets.

@xates
Created November 28, 2018 15:16
Show Gist options
  • Save xates/aaf7745b4a62c973282f7644d73ac7a4 to your computer and use it in GitHub Desktop.
Save xates/aaf7745b4a62c973282f7644d73ac7a4 to your computer and use it in GitHub Desktop.
AutoHotkey script to simulate hotkeys provided in Ubuntu with Italian keyboard on Windows
#NoEnv
#SingleInstance Force
SendMode Input
; Send ` when pressing ALT GR + '
<^>!'::Send ``
; Send ~ when pressing ALT GR + ì
<^>!ì::Send ~
; Send uppercase accented letters when caps lock is active
#If GetKeyState("CapsLock", "T")
à::Send À
è::Send È
é::Send É
ì::Send Ì
ò::Send Ò
ù::Send Ù
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment