diff options
| author | Alper Cugun <alper@users.noreply.github.com> | 2019-12-08 08:33:48 +0100 |
|---|---|---|
| committer | Drashna Jaelre <drashna@live.com> | 2019-12-07 23:33:48 -0800 |
| commit | 4808b930dbb9b45903e53da6738e7273dab20c6d (patch) | |
| tree | e005fef801f87f7b44516c8bbd07b3b496c34442 | |
| parent | c74295de88e33322db8dcf861608c61db036b9ee (diff) | |
| download | qmk_firmware-4808b930dbb9b45903e53da6738e7273dab20c6d.tar.gz qmk_firmware-4808b930dbb9b45903e53da6738e7273dab20c6d.zip | |
[Keymap] Added my customized 40% layout (#7555)
* Formatting of Contra readme.
* Initial version of my custom keymap
* Move TODOs to readme
* Add comment
* Nuke Plover layer
* Port changes to other layers
* Finished work on my own layout for now
* Add layout image
* Processed comments from review
| -rw-r--r-- | keyboards/contra/keymaps/alper/config.h | 38 | ||||
| -rw-r--r-- | keyboards/contra/keymaps/alper/keymap.c | 191 | ||||
| -rw-r--r-- | keyboards/contra/keymaps/alper/readme.md | 22 | ||||
| -rw-r--r-- | keyboards/contra/readme.md | 2 |
4 files changed, 252 insertions, 1 deletions
diff --git a/keyboards/contra/keymaps/alper/config.h b/keyboards/contra/keymaps/alper/config.h new file mode 100644 index 000000000..d61ee2938 --- /dev/null +++ b/keyboards/contra/keymaps/alper/config.h | |||
| @@ -0,0 +1,38 @@ | |||
| 1 | #pragma once | ||
| 2 | |||
| 3 | |||
| 4 | #ifdef AUDIO_ENABLE | ||
| 5 | #define STARTUP_SONG SONG(PLANCK_SOUND) | ||
| 6 | // #define STARTUP_SONG SONG(NO_SOUND) | ||
| 7 | |||
| 8 | #define DEFAULT_LAYER_SONGS { SONG(QWERTY_SOUND), \ | ||
| 9 | SONG(COLEMAK_SOUND), \ | ||
| 10 | SONG(DVORAK_SOUND) \ | ||
| 11 | } | ||
| 12 | #endif | ||
| 13 | |||
| 14 | #define MUSIC_MASK (keycode != KC_NO) | ||
| 15 | |||
| 16 | /* | ||
| 17 | * MIDI options | ||
| 18 | */ | ||
| 19 | |||
| 20 | /* Prevent use of disabled MIDI features in the keymap */ | ||
| 21 | //#define MIDI_ENABLE_STRICT 1 | ||
| 22 | |||
| 23 | /* enable basic MIDI features: | ||
| 24 | - MIDI notes can be sent when in Music mode is on | ||
| 25 | */ | ||
| 26 | |||
| 27 | #define MIDI_BASIC | ||
| 28 | |||
| 29 | /* enable advanced MIDI features: | ||
| 30 | - MIDI notes can be added to the keymap | ||
| 31 | - Octave shift and transpose | ||
| 32 | - Virtual sustain, portamento, and modulation wheel | ||
| 33 | - etc. | ||
| 34 | */ | ||
| 35 | //#define MIDI_ADVANCED | ||
| 36 | |||
| 37 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
| 38 | //#define MIDI_TONE_KEYCODE_OCTAVES 2 | ||
diff --git a/keyboards/contra/keymaps/alper/keymap.c b/keyboards/contra/keymaps/alper/keymap.c new file mode 100644 index 000000000..8be751355 --- /dev/null +++ b/keyboards/contra/keymaps/alper/keymap.c | |||
| @@ -0,0 +1,191 @@ | |||
| 1 | /* Copyright 2015-2017 Jack Humbert | ||
| 2 | * | ||
| 3 | * This program is free software: you can redistribute it and/or modify | ||
| 4 | * it under the terms of the GNU General Public License as published by | ||
| 5 | * the Free Software Foundation, either version 2 of the License, or | ||
| 6 | * (at your option) any later version. | ||
| 7 | * | ||
| 8 | * This program is distributed in the hope that it will be useful, | ||
| 9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 11 | * GNU General Public License for more details. | ||
| 12 | * | ||
| 13 | * You should have received a copy of the GNU General Public License | ||
| 14 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
| 15 | */ | ||
| 16 | |||
| 17 | #include QMK_KEYBOARD_H | ||
| 18 | |||
| 19 | enum planck_layers { | ||
| 20 | _QWERTY, | ||
| 21 | _COLEMAK, | ||
| 22 | _DVORAK, | ||
| 23 | _LOWER, | ||
| 24 | _RAISE, | ||
| 25 | _ADJUST | ||
| 26 | }; | ||
| 27 | |||
| 28 | enum planck_keycodes { | ||
| 29 | QWERTY = SAFE_RANGE, | ||
| 30 | COLEMAK, | ||
| 31 | DVORAK, | ||
| 32 | LOWER, | ||
| 33 | RAISE | ||
| 34 | }; | ||
| 35 | |||
| 36 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
| 37 | |||
| 38 | /* Qwerty | ||
| 39 | * ,---------------------------------------------------------------------------------------------------. | ||
| 40 | * | Esc | Q | W | E | R | T | Y | U | I | O | P | Bksp | | ||
| 41 | * |-----------+------+------+------+------+-------------+------+----------+------+------+-------------| | ||
| 42 | * | Ctrl/Tab | A | S | D | F | G | H | J | K | L | ; | " | | ||
| 43 | * |-----------+------+------+------+------+------|------+------+----------+------+------+-------------| | ||
| 44 | * | Shift/Esc | Z | X | C | V | B | N | M | , | . | / | Shift/Enter | | ||
| 45 | * |-----------+------+------+------+------+------+------+------+----------+------+------+-------------| | ||
| 46 | * | Tab | Ctrl | Alt | GUI |Lower | Space |Raise | GUI/Left | Down | Up | Right | | ||
| 47 | * `---------------------------------------------------------------------------------------------------' | ||
| 48 | */ | ||
| 49 | [_QWERTY] = LAYOUT_planck_mit( | ||
| 50 | KC_ESC, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_BSPC, | ||
| 51 | MT(MOD_LCTL, KC_TAB), KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, | ||
| 52 | MT(MOD_LSFT, KC_ESC), KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, MT(MOD_RSFT, KC_ENT), | ||
| 53 | KC_TAB, KC_LCTL, KC_LALT, KC_LGUI, LOWER, KC_SPC, RAISE, MT(MOD_RGUI, KC_LEFT), KC_DOWN, KC_UP, KC_RGHT | ||
| 54 | ), | ||
| 55 | |||
| 56 | /* Colemak | ||
| 57 | * ,---------------------------------------------------------------------------------------------------. | ||
| 58 | * | Esc | Q | W | F | P | G | J | L | U | Y | ; | Bksp | | ||
| 59 | * |-----------+------+------+------+------+-------------+------+----------+------+------+-------------| | ||
| 60 | * | Ctrl/Tab | A | R | S | T | D | H | N | E | I | O | " | | ||
| 61 | * |-----------+------+------+------+------+------|------+------+----------+------+------+-------------| | ||
| 62 | * | Shift/Esc | Z | X | C | V | B | K | M | , | . | / | Shift/Enter | | ||
| 63 | * |-----------+------+------+------+------+-------------+------+----------+------+------+------+------| | ||
| 64 | * | Tab | Ctrl | Alt | GUI |Lower | Space |Raise | GUI/Left | Down | Up | Right | | ||
| 65 | * `---------------------------------------------------------------------------------------------------' | ||
| 66 | */ | ||
| 67 | [_COLEMAK] = LAYOUT_planck_mit( | ||
| 68 | KC_ESC, KC_Q, KC_W, KC_F, KC_P, KC_G, KC_J, KC_L, KC_U, KC_Y, KC_SCLN, KC_BSPC, | ||
| 69 | MT(MOD_LCTL, KC_TAB), KC_A, KC_R, KC_S, KC_T, KC_D, KC_H, KC_N, KC_E, KC_I, KC_O, KC_QUOT, | ||
| 70 | MT(MOD_LSFT, KC_ESC), KC_Z, KC_X, KC_C, KC_V, KC_B, KC_K, KC_M, KC_COMM, KC_DOT, KC_SLSH, MT(MOD_RSFT, KC_ENT), | ||
| 71 | KC_TAB, KC_LCTL, KC_LALT, KC_LGUI, LOWER, KC_SPC, RAISE, MT(MOD_RGUI, KC_LEFT), KC_DOWN, KC_UP, KC_RGHT | ||
| 72 | ), | ||
| 73 | |||
| 74 | /* Dvorak | ||
| 75 | * ,---------------------------------------------------------------------------------------------------. | ||
| 76 | * | Esc | " | , | . | P | Y | F | G | C | R | L | Bksp | | ||
| 77 | * |-----------+------+------+------+------+-------------+------+----------+------+------+-------------| | ||
| 78 | * | Ctrl/Tab | A | O | E | U | I | D | H | T | N | S | / | | ||
| 79 | * |-----------+------+------+------+------+------|------+------+----------+------+------+-------------| | ||
| 80 | * | Shift/Esc | ; | Q | J | K | X | B | M | W | V | Z | Shift/Enter | | ||
| 81 | * |-----------+------+------+------+------+------+------+------+----------+------+------+-------------| | ||
| 82 | * | Tab | Ctrl | Alt | GUI |Lower | Space |Raise | GUI/Left | Down | Up | Right | | ||
| 83 | * `---------------------------------------------------------------------------------------------------' | ||
| 84 | */ | ||
| 85 | [_DVORAK] = LAYOUT_planck_mit( | ||
| 86 | KC_ESC, KC_QUOT, KC_COMM, KC_DOT, KC_P, KC_Y, KC_F, KC_G, KC_C, KC_R, KC_L, KC_BSPC, | ||
| 87 | MT(MOD_LCTL, KC_TAB), KC_A, KC_O, KC_E, KC_U, KC_I, KC_D, KC_H, KC_T, KC_N, KC_S, KC_SLSH, | ||
| 88 | MT(MOD_LSFT, KC_ESC), KC_SCLN, KC_Q, KC_J, KC_K, KC_X, KC_B, KC_M, KC_W, KC_V, KC_Z, MT(MOD_RSFT, KC_ENT), | ||
| 89 | KC_TAB, KC_LCTL, KC_LALT, KC_LGUI, LOWER, KC_SPC, RAISE, MT(MOD_RGUI, KC_LEFT), KC_DOWN, KC_UP, KC_RGHT | ||
| 90 | ), | ||
| 91 | |||
| 92 | /* Lower | ||
| 93 | * ,-----------------------------------------------------------------------------------. | ||
| 94 | * | ~ | ! | @ | # | $ | % | ^ | & | * | ( | ) | Bksp | | ||
| 95 | * |------+------+------+------+------+-------------+------+------+------+------+------| | ||
| 96 | * | Del | F1 | F2 | F3 | F4 | F5 | F6 | _ | + | { | } | | | | ||
| 97 | * |------+------+------+------+------+------|------+------+------+------+------+------| | ||
| 98 | * | | F7 | F8 | F9 | F10 | F11 | F12 |ISO ~ |ISO | | Home | End | | | ||
| 99 | * |------+------+------+------+------+------+------+------+------+------+------+------| | ||
| 100 | * | | | | | | | | Next | Vol- | Vol+ | Play | | ||
| 101 | * `-----------------------------------------------------------------------------------' | ||
| 102 | */ | ||
| 103 | [_LOWER] = LAYOUT_planck_mit( | ||
| 104 | KC_TILD, KC_EXLM, KC_AT, KC_HASH, KC_DLR, KC_PERC, KC_CIRC, KC_AMPR, KC_ASTR, KC_LPRN, KC_RPRN, KC_BSPC, | ||
| 105 | KC_DEL, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_UNDS, KC_PLUS, KC_LCBR, KC_RCBR, KC_PIPE, | ||
| 106 | _______, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, S(KC_NUHS), S(KC_NUBS), KC_HOME, KC_END, _______, | ||
| 107 | _______, _______, _______, _______, _______, _______, _______, KC_MFFD, KC_VOLD, KC_VOLU, KC_MPLY | ||
| 108 | ), | ||
| 109 | |||
| 110 | /* Raise | ||
| 111 | * ,----------------------------------------------------------------------------------------------. | ||
| 112 | * | ` | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 0 | Bksp | | ||
| 113 | * |-----------+---------+---------+------+------+-------------+------+------+------+------+------| | ||
| 114 | * | Del | F1 | F2 | F3 | F4 | F5 | F6 | - | = | [ | ] | \ | | ||
| 115 | * |-----------+---------+---------+------+------+------|------+------+------+------+------+------| | ||
| 116 | * | | F7 | F8 | F9 | F10 | F11 | F12 |ISO # |ISO / |Pg Up |Pg Dn | | | ||
| 117 | * |-----------+---------+---------+------+------+------+------+------+------+------+------+------| | ||
| 118 | * | AppSwitch | PrevTab | NextTab | | | | | Next | Vol- | Vol+ | Play | | ||
| 119 | * `----------------------------------------------------------------------------------------------' | ||
| 120 | */ | ||
| 121 | [_RAISE] = LAYOUT_planck_mit( | ||
| 122 | KC_GRV, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_BSPC, | ||
| 123 | KC_DEL, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_MINS, KC_EQL, KC_LBRC, KC_RBRC, KC_BSLS, | ||
| 124 | _______, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, KC_NUHS, KC_NUBS, KC_PGUP, KC_PGDN, _______, | ||
| 125 | LGUI(KC_GRAVE), LGUI(LSFT(KC_LBRACKET)), LGUI(LSFT(KC_RBRACKET)), _______, _______, _______, _______, KC_MFFD, KC_VOLD, KC_VOLU, KC_MPLY | ||
| 126 | ), | ||
| 127 | |||
| 128 | /* Adjust (Lower + Raise) | ||
| 129 | * ,-----------------------------------------------------------------------------------. | ||
| 130 | * | | Reset| | | | | | | | | | Del | | ||
| 131 | * |------+------+------+------+------+-------------+------+------+------+------+------| | ||
| 132 | * | | | |Aud on|Audoff|AGnorm|AGswap|Qwerty|Colemk|Dvorak| | | | ||
| 133 | * |------+------+------+------+------+------|------+------+------+------+------+------| | ||
| 134 | * | |Voice-|Voice+|Mus on|Musoff|MIDIon|MIDIof| | | | | | | ||
| 135 | * |------+------+------+------+------+------+------+------+------+------+------+------| | ||
| 136 | * | | | | | | | | | | | | | ||
| 137 | * `-----------------------------------------------------------------------------------' | ||
| 138 | */ | ||
| 139 | [_ADJUST] = LAYOUT_planck_mit( | ||
| 140 | _______, RESET, DEBUG, RGB_TOG, RGB_MOD, RGB_HUI, RGB_HUD, RGB_SAI, RGB_SAD, RGB_VAI, RGB_VAD, KC_DEL , | ||
| 141 | _______, _______, MU_MOD, AU_ON, AU_OFF, AG_NORM, AG_SWAP, QWERTY, COLEMAK, DVORAK, _______, _______, | ||
| 142 | _______, MUV_DE, MUV_IN, MU_ON, MU_OFF, MI_ON, MI_OFF, TERM_ON, TERM_OFF, _______, _______, _______, | ||
| 143 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______ | ||
| 144 | ) | ||
| 145 | |||
| 146 | }; | ||
| 147 | |||
| 148 | bool process_record_user(uint16_t keycode, keyrecord_t *record) { | ||
| 149 | switch (keycode) { | ||
| 150 | case QWERTY: | ||
| 151 | if (record->event.pressed) { | ||
| 152 | print("mode just switched to qwerty and this is a huge string\n"); | ||
| 153 | set_single_persistent_default_layer(_QWERTY); | ||
| 154 | } | ||
| 155 | return false; | ||
| 156 | break; | ||
| 157 | case COLEMAK: | ||
| 158 | if (record->event.pressed) { | ||
| 159 | set_single_persistent_default_layer(_COLEMAK); | ||
| 160 | } | ||
| 161 | return false; | ||
| 162 | break; | ||
| 163 | case DVORAK: | ||
| 164 | if (record->event.pressed) { | ||
| 165 | set_single_persistent_default_layer(_DVORAK); | ||
| 166 | } | ||
| 167 | return false; | ||
| 168 | break; | ||
| 169 | case LOWER: | ||
| 170 | if (record->event.pressed) { | ||
| 171 | layer_on(_LOWER); | ||
| 172 | update_tri_layer(_LOWER, _RAISE, _ADJUST); | ||
| 173 | } else { | ||
| 174 | layer_off(_LOWER); | ||
| 175 | update_tri_layer(_LOWER, _RAISE, _ADJUST); | ||
| 176 | } | ||
| 177 | return false; | ||
| 178 | break; | ||
| 179 | case RAISE: | ||
| 180 | if (record->event.pressed) { | ||
| 181 | layer_on(_RAISE); | ||
| 182 | update_tri_layer(_LOWER, _RAISE, _ADJUST); | ||
| 183 | } else { | ||
| 184 | layer_off(_RAISE); | ||
| 185 | update_tri_layer(_LOWER, _RAISE, _ADJUST); | ||
| 186 | } | ||
| 187 | return false; | ||
| 188 | break; | ||
| 189 | } | ||
| 190 | return true; | ||
| 191 | } | ||
diff --git a/keyboards/contra/keymaps/alper/readme.md b/keyboards/contra/keymaps/alper/readme.md new file mode 100644 index 000000000..0b9cab507 --- /dev/null +++ b/keyboards/contra/keymaps/alper/readme.md | |||
| @@ -0,0 +1,22 @@ | |||
| 1 | # Alper's Contra Layout | ||
| 2 | |||
| 3 |  | ||
| 4 | |||
| 5 | ## Rationale | ||
| 6 | |||
| 7 | I based this off the default and changed some stuff because I'm a macOS user who types in Dvorak: | ||
| 8 | |||
| 9 | * Ctrl/Tab: It is normal to remap Caps Lock to control there and having a press button there for Tab would solve a lot of problems. BUT on my Contra this button is broken, so I've mapped 0,0 to Tab as well. | ||
| 10 | * Shift/Esc: A standard left shift with an Escape that I have not been utilizing much in favor of the top corner button. | ||
| 11 | * Tab: The replacement tab. | ||
| 12 | * Overloaded the Left arrow with another GUI (Command) button because that is essential on macOS. | ||
| 13 | * Overloaded the Enter button with a Shift because like Command, it is essential for me to have these on both sides of the keyboard. | ||
| 14 | * Raise-0,0: Switches between windows of an application. | ||
| 15 | * Raise-0,1-2: Dedicated next and previous tab buttons since these key combinations caused a finger twister. | ||
| 16 | |||
| 17 | |||
| 18 | ## TODO | ||
| 19 | |||
| 20 | * Try out tapdance for brackets (see ryanm101/keymap.c) | ||
| 21 | * REMAP ESC To LT() so I can use it to select numbers (_NUMB) and functions more easily? (see msiu/keymap.c) https://docs.qmk.fm/#/feature_advanced_keycodes?id=switching-and-toggling-layers | ||
| 22 | * Wipe everything except Dvorak and Qwerty (see deastiny/keymap.c) \ No newline at end of file | ||
diff --git a/keyboards/contra/readme.md b/keyboards/contra/readme.md index f16598581..2bf1d4de3 100644 --- a/keyboards/contra/readme.md +++ b/keyboards/contra/readme.md | |||
| @@ -1,5 +1,5 @@ | |||
| 1 | CONTRA | 1 | CONTRA |
| 2 | === | 2 | ====== |
| 3 | 3 | ||
| 4 |  | 4 |  |
| 5 | 5 | ||
