Age | Commit message (Collapse) | Author |
|
Call led_set for layer action events to update LEDs on layer changes
|
|
Add new features to dshields keymap.
|
|
- one shot layers, dynamic macros and tap dance keys
- add a basic readme.md and layout image.
|
|
|
|
* Add keymap for smt Clueboard (HHKB layout)
* Add readme for smt Clueboard (HHKB) keymap
* Flesh out the keymap a bit more to support Colemak & Dvorak
* Update README with layout image
|
|
Change to per-key eager debouncing for ErgoDox EZ.
|
|
dynamic macros: Trim the trailing modifiers; further cleanup
|
|
Add new keymap for dshields.
|
|
lowercase .jpg
|
|
Merge changes for coderkun’s Neo2 layout
|
|
[Bigtuna.IO] Updating Miuni32 Layouts
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Replacement controller for Filco Majestouch 2 104 key keyboard. BE
advises code will also work with the Black Petal controller - I don't
have one to test with. Tests working perfectly on my Filco.
|
|
|
|
|
|
|
|
i guess that fixes the image link - currently its broken
|
|
|
|
Fixes #1199.
|
|
|
|
|
|
[ps2avrGB] Add KEYMAP without KC-prefix
|
|
Add DYN_REC_STOP to the dynamic macros, cleanup PR #1267
|
|
|
|
More specifically, we save them and then place the `macro_end` pointer
before them so they are essentially ignored and the other macro may
freely overwrite them.
|
|
We need to check whether we just passed the after-the-end point of the
other macro. Instead we were checking whether we are going to reach it
now.
|
|
Apparently sometimes the backlight was toggled only once and it was left on.
|
|
Right after the user initiates the macro recording, they usually need
to release some keys used to access the DYN_REC_START layers. It makes
sense to ignore them.
Note: The keys used to access the DYN_REC_STOP key are *not* ignored.
|
|
and remove obsolete explicit line-separator "\"
|
|
and rename old variant to KEYMAP_KC
|
|
Cleaning Up Dockerfile Layers Per Official Docs
|
|
From the official docs:
```
Note: The official Debian and Ubuntu images automatically run apt-get clean, so explicit invocation is not required.
```
Also added ` && rm -rf /var/lib/apt/lists/*` as part of the install line which probably does what was intended (no need to make a new layer).
Added apt-get update to the RUN payload, as it should be part of the same layer.
Both are documented here: https://docs.docker.com/engine/userguide/eng-image/dockerfile_best-practices/
|
|
Adding AMJ60 ANSI Maximized Layout
|
|
Promethium keymap update
|
|
Add possibility to override the command to execute when flashing
|
|
|
|
Fixed bugs for S60-X RGB version
|
|
|
|
|
|
|
|
|
|
Dynamic macro functionality is modified to check for `DYN_REC_STOP`, so
that macro recording can be stopped with a designated key combination
(e.g. `qs` or anything) instead of mandating the use of a `_DYN` layer.
`_DYN` layer stopping can still be done by passing `DYN_REC_STOP` within
`process_record_user()`:
bool process_record_user(uint16_t keycode, keyrecord_t *record) {
uint16_t macro_kc = (keycode == MO(_DYN) ? DYN_REC_STOP : keycode);
if (!process_record_dynamic_macro(macro_kc, record)) {
return false;
}
return true;
}
|
|
Keeping hold space for fn1, adding three other user-mappable keys.
|
|
Both split shifts and HHKB split backspace.
|
|
|