forked from qmk/qmk_firmware
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Keymap] Feature/alfrdmalr/keymap update (qmk#8174)
* WIP do not merge * first pass at custom preonic layout * add auto shift and reset via leader key * Update readme * update copyright notice * formatting changes * fix: use MO instead of process_record_user * added backslash and moved grave position * remove extraneous 'j' characer in NUMPAD template * update template formatting * remove process_record_user * swap "!" with "@" * fix readme formatting * update readme layout image * restore settings layer * add windows minimize sequence * fix: switch to correct seq function for three-key sequence * fix: missing semicolon * refactor: move keymap to userspace and generic 5x12 layout * add numlock to numpad layer * add readme * update readme formatting * remove unused wrappers from layout keymap * update readme title to reflect new location * remove alfrdmalr directory from preonic/keymaps * add ortho 4x12 support * add 'trilayer' settings and update keymap * update SYMBOLS layer to SYMBOL * remove minimize sequence * clean up user config * add brightness controls * update settings ascii * moved some symbols around to make vim/linux smoother
- Loading branch information
Showing
7 changed files
with
171 additions
and
62 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#pragma once | ||
|
||
#ifdef AUDIO_ENABLE | ||
#define STARTUP_SONG SONG(NO_SOUND) | ||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
#include "alfrdmalr.h" | ||
|
||
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
|
||
// QWERTY | ||
[_QWERTY] = LAYOUT_ortho_4x12_wrapper( | ||
K10, ____QWERTY_L1____, ____QWERTY_R1____, K1B, | ||
K20, ____QWERTY_L2____, ____QWERTY_R2____, K2B, | ||
K30, ____QWERTY_L3____, ____QWERTY_R3____, K3B, | ||
K40, _____BASE_L4_____, _____BASE_R4_____, K4B | ||
), | ||
|
||
// SYMBOL | ||
[_SYMBOL] = LAYOUT_ortho_4x12_wrapper( | ||
K10_SYM, ____SYMBOL_L1____, ____SYMBOL_R1____, K1B_SYM, | ||
K20_SYM, ____SYMBOL_L2____, ____SYMBOL_R2____, K2B_SYM, | ||
K30_SYM, ____SYMBOL_L3____, ____SYMBOL_R3____, K3B_SYM, | ||
K40_SYM, ____SYMBOL_L4____, ____SYMBOL_R4____, K4B_SYM | ||
), | ||
|
||
// NAVIGATION | ||
[_NAVIGATION] = LAYOUT_ortho_4x12_wrapper( | ||
K10_NAV, __NAVIGATION_L1__, __NAVIGATION_R1__, K1B_NAV, | ||
K20_NAV, __NAVIGATION_L2__, __NAVIGATION_R2__, K2B_NAV, | ||
K30_NAV, __NAVIGATION_L3__, __NAVIGATION_R3__, K3B_NAV, | ||
K40_NAV, __NAVIGATION_L4__, __NAVIGATION_R4__, K4B_NAV | ||
), | ||
|
||
// NUMPAD | ||
[_NUMPAD] = LAYOUT_ortho_4x12_wrapper( | ||
K10_NUM, ____NUMPAD_L1____, ____NUMPAD_R1____, K1B_NUM, | ||
K20_NUM, ____NUMPAD_L2____, ____NUMPAD_R2____, K2B_NUM, | ||
K30_NUM, ____NUMPAD_L3____, ____NUMPAD_R3____, K3B_NUM, | ||
K40_NUM, ____NUMPAD_L4____, ____NUMPAD_R4____, K4B_NUM | ||
), | ||
|
||
// SETTINGS | ||
[_SETTINGS] = LAYOUT_ortho_4x12_wrapper( | ||
K10_SET, ___SETTINGS_L1___, ___SETTINGS_R1___, K1B_SET, | ||
K20_SET, ___SETTINGS_L2___, ___SETTINGS_R2___, K2B_SET, | ||
K30_SET, ___SETTINGS_L3___, ___SETTINGS_R3___, K3B_SET, | ||
K40_SET, ___SETTINGS_L4___, ___SETTINGS_R4___, K4B_SET | ||
) | ||
}; |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.