Skip to content

Commit

Permalink
Merge pull request #2 from Rwarcards762/Rwarcards762-patch-1
Browse files Browse the repository at this point in the history
Approving MR for keymap changes
  • Loading branch information
Rwarcards762 committed Jan 20, 2022
2 parents 3bc49bd + 6d9daf2 commit 3ff83d9
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ This SHOULD compile and run with no issues assuming:

# What it does

This keymap uses the Lily58's default layout. You could change this in `keymap.c` towards the top if desired.
`keymap.c` in a previous commit used the original layout -- utilize that if desired. The latest in `master` uses a personalized version, improving the nav cluster (imo.)

This keymap adds text to the left OLED to show your current estimated WPM, as well as what layer you are on.

Expand Down
14 changes: 7 additions & 7 deletions keymap.c
Original file line number Diff line number Diff line change
Expand Up @@ -72,11 +72,11 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
),
/* RAISE
* ,-----------------------------------------. ,-----------------------------------------.
* | | | | | | | | | | | | | |
* | | | | | | | | | | | | | DEL |
* |------+------+------+------+------+------| |------+------+------+------+------+------|
* | ` | 1 | 2 | 3 | 4 | 5 | | 6 | 7 | 8 | 9 | 0 | |
* | ` | 1 | 2 | 3 | 4 | 5 | | HOME | PGUP | Up | PGDN | END | INS |
* |------+------+------+------+------+------| |------+------+------+------+------+------|
* | F1 | F2 | F3 | F4 | F5 | F6 |-------. ,-------| | Left | Down | Up |Right | |
* | F1 | F2 | F3 | F4 | F5 | F6 |-------. ,-------| | Left | Down | Right| | |
* |------+------+------+------+------+------| [ | | ] |------+------+------+------+------+------|
* | F7 | F8 | F9 | F10 | F11 | F12 |-------| |-------| + | - | = | [ | ] | \ |
* `-----------------------------------------/ / \ \-----------------------------------------'
Expand All @@ -86,9 +86,9 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
*/

[_RAISE] = LAYOUT( \
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, \
KC_GRV, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, _______, \
KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, XXXXXXX, KC_LEFT, KC_DOWN, KC_UP, KC_RGHT, XXXXXXX, \
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_DEL, \
KC_GRV, KC_1, KC_2, KC_3, KC_4, KC_5, KC_HOME, KC_PGUP, KC_UP, KC_PGDN, KC_END, KC_INS, \
KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, XXXXXXX, KC_LEFT, KC_DOWN, KC_RIGHT, XXXXXXX, XXXXXXX, \
KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, _______, _______, KC_PLUS, KC_MINS, KC_EQL, KC_LBRC, KC_RBRC, KC_BSLS, \
_______, _______, _______, _______, _______, _______, _______, _______ \
),
Expand Down Expand Up @@ -291,4 +291,4 @@ void oled_task_user(void) {
// Right side
render_anim();
}
}
}

0 comments on commit 3ff83d9

Please sign in to comment.