1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
|
QWAZERTY
========
A keyboard layout for French AZERTY keyboards (or any [ISO
keyboard](https://en.wikipedia.org/wiki/ISO/IEC_9995)). It is intended to make
ISO keyboards more comfortable to use for Americans (and those who are
accustomed to ANSI QWERTY keyboards).
Based on the U.S. QWERTY layout, it reproduces all keys in QWERTY. Notably, the
"grave accent"/"tilde" key is restored to its normal position at the top left of
the keyboard (Apple's U.S. layout for ISO keyboards moves it next to the left
"Shift" key).
Additionally, the key next to the left "Shift" key, which doesn't exist on ANSI
keyboards, is changed to input a set of emoji glyphs. It provides four emojis in
total (one for each of the following modifiers: normal, Shift, Option,
Option-Shift). These emojis can be used for faster shortcuts. The single-key
normal mode emoji can, for example, be bound to a frequent action, enabling
access to functionality with a single button press.
Two versions of the layout exist. Both make the following changes to Apple's
built-in U.S. QWERTY layout:
* Move the "grave accent"/"tilde" key to the left of the "1" numeral key.
* Turn the key next to the left "Shift" into an "emoji" key.
In addition to those modifications, the `QWAZERTY.bundle` version swaps the "\"
and "Enter" keys. This may not work in all applications. To ensure the swap
works in all contexts, see the [Karabiner section](#karabiner).
## The Emoji Key
ISO keyboards have one more key than ANSI keyboards. QWAZERTY uses this "extra"
key as a special emoji key. The emojis aren't meant to be used for real, but
rather as a convenient identifier to rebind the key to any desired function.
Here are the emojis and corresponding key sequences:
+--------+----------------------+
| Output | Key Sequence |
+--------+----------------------+
| 🕳 | <Emoji> |
| ⛳ | Shift–<Emoji> |
| 🌗 | Option–<Emoji> |
| 🌑 | Shift—Option—<Emoji> |
+--------+----------------------+
## Example Usage
Here is an extract from my `.vimrc`, which adds bindings to run Ruby tests when
the special emoji key is pressed:
nnoremap 🕳 :call RunCurrentSpecFile()
nnoremap ⛳ :call RunNearestSpec()
## Screenshots
### QWAZERTY-normal enter key.bundle




### QWAZERTY.bundle




## Install
Copy either `QWAZERTY-normal enter key.bundle` or `QWAZERTY.bundle` to
`~/Library/Keyboard Layouts`.
## Karabiner
Two additional changes to the standard keyboard layout are provided via
configuration through [Karabiner-Elements](https://pqrs.org/osx/karabiner/).
This enables:
* Swapping the "Enter" and "\" keys
* Swapping the left "Shift" key and "emoji" key
By making these two swaps, the positions of the keys are closer to their
counterparts on ANSI keyboards. This enables less reaching in the pinkie fingers
and the reuse of ANSI muscle memory.
The config can be installed by copying the hashes in `"simple_modifications"`
from `karabiner.part.json` into the corresponding spot in your
`~/.config/karabiner/karabiner.json`.
## License
QWAZERTY is dedicated to the public domain via the Unlicense (see the included
UNLICENSE file).
|