Last active
September 2, 2021 01:42
-
-
Save mochsner/29c4677a26b5904c11c0fc773c3f5cc2 to your computer and use it in GitHub Desktop.
Windows 10 Map CAPS to CTRL
This file contains 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
# Set CAPS LOCK = Ctrl (Vim/Emacs), then restart computer | |
$hexified = "00,00,00,00,00,00,00,00,02,00,00,00,1d,00,3a,00,00,00,00,00".Split(',') | % { "0x$_"}; | |
$kbLayout = 'HKLM:\System\CurrentControlSet\Control\Keyboard Layout'; | |
New-ItemProperty -Path $kbLayout -Name "Scancode Map" -PropertyType Binary -Value ([byte[]]$hexified); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment