AutoHotKeys

Remapping ` and ~ on Windows

  1. Install/Start AutoHotKeys
  2. Create New Script
  3. 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