Skip to content

Instantly share code, notes, and snippets.

@RealSGII2
Created February 16, 2021 20:55
Show Gist options
  • Select an option

  • Save RealSGII2/2edf6f41cdeae21b5d967058269293f5 to your computer and use it in GitHub Desktop.

Select an option

Save RealSGII2/2edf6f41cdeae21b5d967058269293f5 to your computer and use it in GitHub Desktop.
; Credit: RealSGII2 (2021)
; Name: abcdefKeyboard.ahk
; Description: Makes a QWERTY keyboard into an ABCDEF keyboard.
#NoEnv
SendMode Input
SetWorkingDir %A_ScriptDir%
#if !GetKeyState("Shift", "P") && !GetKeyState("CapsLock", "T")
q::a
w::b
e::c
r::d
t::e
y::f
u::g
i::h
o::i
p::j
a::k
s::l
d::m
f::n
g::o
h::p
j::q
k::r
l::s
z::t
x::u
c::v
v::w
b::x
n::y
m::z
#if
#if GetKeyState("Shift", "P") || GetKeyState("CapsLock", "T")
q::A
w::B
e::C
r::D
t::E
y::F
u::G
i::H
o::I
p::J
a::K
s::L
d::M
f::N
g::O
h::P
j::Q
k::R
l::S
z::T
x::U
c::V
v::W
b::X
n::Y
m::Z
#if
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment