AutoHotKeys
Remapping ` and ~ on Windows
- Install/Start AutoHotKeys
- Create New Script
- Copy Code:
#Requires AutoHotkey v2.0
<^>!-::
{
Send "~"
}
<^>!'::
{
Send "``"
}
The backtip code requires a double character otherwise it will throw an error
This code map AltGr+’ to backtip and AtlGr+- to tilde. Automatically execute the script at PC Startup 1. Type Windows + R then type shell:startup and press and add the script here 2. Restart the computer