d9e4dad0a8
* .build containment implemented * no destructive variable setting - builds in either folder * make from 3 places * cleans before each build * make from root with keyboard=keyboard, keymap=keymap * make from keyboard/keyboard with keymap=keymap * make from keymaps/keymap * only implemented on planck * adds color diag to avr-gcc * makefiles for all plancks, clean-up * quick build-all makefile for plancks * reformatting of make output (colors) * color toggle, tmk path corrections * correct if statement for color * move config.h to main makefile, updates preonic, atomic * format update, all keyboards targets * makefile optional for build all target, alps and arrow_pad updated * alps updated * make planck default, trying out travis recipe for all-keyboards * all-keymaps target, different travis recipe * updates alps64 * updates keyboards to new format * updates clue* projects * all projects updated, specialise EZ .hex, let .hex through * updates travis * automatically find root, keyboard, keymap * silent echo, cleaned-up mass make output * updates all keyboards' .hex files except EZ * Rename Bantam44.c to bantam44.c * Rename Bantam44.h to bantam44.h * nananana * adds six key keyboard * does same to ez as rest * updates send_string example * brings ergodox_ez up to date * updates template/new project script * adds sixkeyboard * adds readme for sixkeyboard * adds sixkeyboard to travis * filenames, gitignore mess * define clock prescaler stuff manually * make quick, size test example * documentation and dfu-no-build |
||
---|---|---|
.. | ||
images | ||
COPYING | ||
Makefile | ||
README.md | ||
compiled.hex | ||
config.h | ||
keymap.c |
README.md
algernon's layout
This is an unconventional layout for the ErgoDox EZ. For more details about the history of the layout, see my blog posts about my ErgoDox journey.
Some of the things in the layout only work when one uses Spacemacs and GNOME under Linux. Your mileage may vary.
Base layer
At its core, this is a Dvorak layout, with some minor changes (for example, -
being on the left half, and on the innermost key of the bottom row on the
right). The more interesting parts are how certain keys behave:
- The keys on the number row double as function keys, when held for a bit longer than an usual tap. This allows me to use the function keys without having to switch layers.
- The
Shift
,Alt
, andControl
modifiers are one-shot. When tapped, they are considered active for the next key press only. When double tapped, they toggle on, until a third, single tap sometime later. When held, they act as expected. My usual pattern is that I use these for the next keypress only, so this behaviour is perfect. If I need them held, I'll just double-tap. - The
GUI
key is special, because when I double-tap it, it sendsGUI + w
, which pops up an application selector. It also switches to a one-shot layer, where the number row on the left half turns into app selector macros, for the most common things I usually want to switch to. Otherwise it behaves as on a normal layout. - The
ESC
key also doubles as a one-shot cancel key: if tapped while any of the one-shot modifiers are in-flight (as in, single-tapped, and not expired yet), it cancels all one-shot modifiers. Otherwise it sends the usual keycode. - The Emacs and Hun layer keys are one-shot, the 1Hand is a toggle.
- The Lead key allows me to type in a sequence of keys, and trigger some
actions:
LEAD u
enters unicode input mode, by sending the GTK+ key sequence that does this.LEAD l
uses the unicode input method to enter aλ
.LEAD s
does a lot of magic to type in a shruggie:¯\_(ツ)_/¯
LEAD w m
maximises the currently focused window.
Hungarian layer
On this layer, the accented characters are at the same position as their base variant. For some, which can have other diatribes, the long one is on top, short's on bottom. Tapping any of the accented characters takes us back to the base layer.
Emacs layer
This layer is primarily for navigating text - and for some mousing and other things, because there was space. Most of the keys should be pretty self-explanatory, except for a few:
- There are three keys on the bottom row of the left side, that change how some of the other keys - explained just below - work. The keys are for Emacs mode (the default), Terminal mode, and Traditional mode, respectively.
- The Visual mode key (the top big key on the left side) sends the
v
key in Emacs mode, to enter Visual mode in Spacemacs. In all other modes, it is a no-op. - The Copy/Cut key (the bottom big key on the left side) sends the copy
command on tap, the cut one when held for longer than a normal tap. The copy
command is
y
in Emacs mode,Ctrl-Shift-c
in Terminal mode, andCtrl-c
in Traditional mode. The cut command isx
in Emacs mode,Ctrl-Shift-x
in Terminal Mode andCtrl-x
in Traditional mode. - The Paste/Delete key (the leftmost key on the left thumb cluster) sends the
paste command on tap, the delete one when held longer than a normal tap. The
paste command is
p
in Emacs mode,Ctrl-Shift-v
in Terminal mode, andCtrl-v
in Traditional mode. The delete command isd
in Emacs mode, andDEL
in the other two. - The
A
,I
andR
keys will - after sending themselves - clear the layer back to the base layer. This allows a quick escape from the layer.
One-handed layer
The one-handed layer is used in situations where the right hand is occupied, by
mousing around, for example. Tapping the OTHER
key switches which side is
active. For the most part, keys remain in their usual position. When the right
half is active, keys are mirrored to the left half.
The differences are as follows:
- The
ESC
key has been moved to the bottom row, so theOTHER
key is easier to tap. - Most keys on the thumb cluster now have dual uses, and these do not change
when switching sides:
- The
Space
/Backspace
key sendsSpace
on tap,Backspace
when held for longer than a normal tap. - The
Enter
/Shift
key sendsEnter
on short-tap,Shift
on long-tap.
- The
- The
Apps
/BASE
key can be used to go back to the base layer, by long-tapping it. A short-tap will send theApp
key, as usual.
Building
To make my workflow easier, this layout is maintained in
its own repository. To build it, you will need the
QMK firmware checked out, and this repo either checked out, or symlinked
to keyboard/ergodox_ez/algernon
. One way to achieve that is this:
$ git clone https://github.com/jackhumbert/qmk_firmware.git
$ cd qmk_firmware/keyboard/ergodox_ez
$ git clone https://github.com/algernon/ergodox-layout.git keymaps/algernon
$ make KEYMAP=algernon
From time to time, updates may be submitted back to the QMK repository. If you are reading it there, you can build the firmware like any other firmware included with it (assuming you are in the root directory of the firmware):
$ cd keyboard/ergodox_ez
$ make KEYMAP=algernon
License
The layout, being a derivative of the original TMK firmware which is under the GPL-2+, this layout is under the GPL as well, but GPL-3+, rather than the older version.