Eric Gebhart user space and keymaps (#17487)
Co-authored-by: Drashna Jaelre <drashna@live.com>
This commit is contained in:
46
keyboards/crkbd/keymaps/ericgebhart/keymap.c
Executable file → Normal file
46
keyboards/crkbd/keymaps/ericgebhart/keymap.c
Executable file → Normal file
@ -1,5 +1,5 @@
|
||||
/*
|
||||
Copyright 2018 Eric Gebhart <e.a.gebhart@gmail.com>
|
||||
Copyright 2018-2022 Eric Gebhart <e.a.gebhart@gmail.com>
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
@ -14,47 +14,5 @@
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
#include "ericgebhart.h"
|
||||
|
||||
#define Crkbd_base(...) Base_3x6_3(__VA_ARGS__)
|
||||
#define Crkbd_bepo(...) Base_bepo_3x6_3(__VA_ARGS__)
|
||||
#define Crkbd_bepo6(...) Base_bepo6_3x6_3(__VA_ARGS__)
|
||||
#define Crkbd_transient(...) Transient6_3x6_3(__VA_ARGS__)
|
||||
|
||||
/*
|
||||
* The `Crkbd_base` macro is a template to allow the use of identical
|
||||
* modifiers for the default layouts (eg QWERTY, Colemak, Dvorak, etc), so
|
||||
* that there is no need to set them up for each layout, and modify all of
|
||||
* them if I want to change them. This helps to keep consistency and ease
|
||||
* of use. K## is a placeholder to pass through the individual keycodes
|
||||
*/
|
||||
|
||||
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
||||
// Qwerty based Base layers
|
||||
[_DVORAK] = Crkbd_base(___DVORAK___),
|
||||
[_BEAKL] = Crkbd_base(___BEAKL15___),
|
||||
[_COLEMAK] = Crkbd_base(___COLEMAK_DH___),
|
||||
[_QWERTY] = Crkbd_base(___QWERTY___),
|
||||
|
||||
// Bepo base layers
|
||||
[_BEAKL_BP] = Crkbd_bepo(___BEAKL15_FR___),
|
||||
[_DVORAK_BP] = Crkbd_bepo(___DVORAK_FR___),
|
||||
[_BEPO] = Crkbd_bepo6(___BEPO6___),
|
||||
|
||||
// Transient layers.
|
||||
[_SYMB] = Crkbd_transient(___SYMB_BEAKLB_3x12___),
|
||||
[_SYMB_BP] = Crkbd_transient(___SYMB_BEAKLB_BP_3x12___),
|
||||
|
||||
[_KEYPAD] = Crkbd_transient(___KP_C_3x12___),
|
||||
[_KEYPAD_BP] = Crkbd_transient(___KP_C_BP_3x12___),
|
||||
|
||||
[_TOPROWS] = Crkbd_transient(___TOPROWS_3x12___),
|
||||
[_TOPROWS_BP] = Crkbd_transient(___TOPROWS_BP_3x12___),
|
||||
|
||||
[_NAV] = Crkbd_transient(___NAV_3x12___),
|
||||
|
||||
[_LAYERS] = Crkbd_transient(___LAYERS_3x12___),
|
||||
//[_RGB] = Crkbd_transient(___RGB_3x12___),
|
||||
[_ADJUST] = Crkbd_transient(___ADJUST_3x12___),
|
||||
///HPT_TOG, KC_NUKE, ___, ___, TG_MODS, HPT_FBK
|
||||
};
|
||||
// See: users/ericgebhart.
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
Copyright 2018 Eric Gebhart <e.a.gebhart@gmail.com>
|
||||
Copyright 2018-2022 Eric Gebhart <e.a.gebhart@gmail.com>
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
@ -14,35 +14,5 @@
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
#include "keymap_bepo.h"
|
||||
#include "ericgebhart.h"
|
||||
#include "layouts.h"
|
||||
|
||||
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
||||
|
||||
// Qwerty Base layers
|
||||
[_DVORAK] = Dox_base(___NUMS___, ___DVORAK___),
|
||||
[_QWERTY] = Dox_base(___NUMS___, ___QWERTY___),
|
||||
[_COLEMAK] = Dox_base(___NUMS___, ___COLEMAK_DH___),
|
||||
[_BEAKL] = Dox_base(___NUMS___, ___BEAKL15___),
|
||||
// Bepo Base layers
|
||||
[_DVORAK_BP] = Dox_bepo_base(___NUMS_BP___, ___DVORAK_FR___),
|
||||
[_BEAKL_BP] = Dox_bepo_base(___BKLNUMS_BP___, ___BEAKL15_FR___),
|
||||
[_BEPO] = Dox_bepo_base6(___BEPO6___),
|
||||
|
||||
|
||||
// transient layers.
|
||||
// Switch to using a transient layer macro
|
||||
[_SYMB] = Dox_transient(___12_FUNC___, ___SYMB_BEAKLA_3x12___),
|
||||
[_SYMB_BP] = Dox_transient(___12_FUNC___, ___SYMB_BEAKLA_BP_3x12___),
|
||||
|
||||
[_TOPROWS] = Dox_transient(___12___, ___TOPROWS_3x12___),
|
||||
[_TOPROWS_BP] = Dox_transient(___12___, ___TOPROWS_BP_3x12___),
|
||||
|
||||
[_KEYPAD] = Dox_transient(___KEYPAD_BKL_FUNC_4x12___),
|
||||
[_KEYPAD_BP] = Dox_transient(___KEYPAD_BKL_FUNC_BP_4x12___),
|
||||
|
||||
[_NAV] = Dox_transient(___12___, ___NAV_3x12___),
|
||||
[_LAYERS] = Dox_transient(___12___, ___LAYERS_3x12___),
|
||||
[_RGB] = Dox_transient(___12___, ___RGB_3x12___),
|
||||
};
|
||||
// See: users/ericgebhart.
|
||||
|
@ -1,139 +0,0 @@
|
||||
/*
|
||||
Copyright 2018 Eric Gebhart <e.a.gebhart@gmail.com>
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 2 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
/********************************************************************/
|
||||
/* Ergodox EZ */
|
||||
/********************************************************************/
|
||||
// This one is is set up to pass in the number row.
|
||||
// Beakl and bepo both change the number row.
|
||||
// Left, middle, right, bottom, and thumbs all stay the same.
|
||||
#define Base_dox( \
|
||||
K01, K02, K03, K04, K05, \
|
||||
K06, K07, K08, K09, K0A, \
|
||||
K11, K12, K13, K14, K15, \
|
||||
K16, K17, K18, K19, K1A, \
|
||||
K21, K22, K23, K24, K25, \
|
||||
K26, K27, K28, K29, K2A, \
|
||||
K31, K32, K33, K34, K35, \
|
||||
K36, K37, K38, K39, K3A \
|
||||
) \
|
||||
LVARG_edox( \
|
||||
ROW0_LEFT(K01, K02, K03, K04, K05), \
|
||||
___2_MIDDLE_1___, \
|
||||
ROW0_RIGHT(K06, K07, K08, K09, K0A), \
|
||||
\
|
||||
ROW1_LEFT(K11, K12, K13, K14, K15), \
|
||||
___2_MIDDLE_2___, \
|
||||
ROW1_RIGHT(K16, K17, K18, K19, K1A), \
|
||||
\
|
||||
ROW2_LEFT(K21, K22, K23, K24, K25), \
|
||||
ROW2_RIGHT(K26, K27, K28, K29, K2A), \
|
||||
\
|
||||
ROW3_LEFT(K31, K32, K33, K34, K35), \
|
||||
___2_MIDDLE_3___, \
|
||||
ROW3_RIGHT(K36, K37, K38, K39, K3A), \
|
||||
___5_BOTTOM_LEFT___, ___5_BOTTOM_RIGHT___, \
|
||||
___12_DOX_ALL_THUMBS___ \
|
||||
)
|
||||
|
||||
#define Base_dox_bepo( \
|
||||
K01, K02, K03, K04, K05, \
|
||||
K06, K07, K08, K09, K0A, \
|
||||
K11, K12, K13, K14, K15, \
|
||||
K16, K17, K18, K19, K1A, \
|
||||
K21, K22, K23, K24, K25, \
|
||||
K26, K27, K28, K29, K2A, \
|
||||
K31, K32, K33, K34, K35, \
|
||||
K36, K37, K38, K39, K3A \
|
||||
) \
|
||||
LVARG_edox( \
|
||||
ROW0_LEFT(K01, K02, K03, K04, K05), \
|
||||
___2_MIDDLE_1___, \
|
||||
ROW0_RIGHT(K06, K07, K08, K09, K0A), \
|
||||
\
|
||||
ROW1_LEFT(K11, K12, K13, K14, K15), \
|
||||
___2_MIDDLE_2___, \
|
||||
ROW1_RIGHT(K16, K17, K18, K19, K1A), \
|
||||
\
|
||||
ROW2_LEFT(K21, K22, K23, K24, K25), \
|
||||
ROW2_RIGHT(K26, K27, K28, K29, K2A), \
|
||||
\
|
||||
ROW3_LEFT(K31, K32, K33, K34, K35), \
|
||||
___2_MIDDLE_3___, \
|
||||
ROW3_RIGHT(K36, K37, K38, K39, K3A), \
|
||||
___5_BOTTOM_LEFT___, ___5_BOTTOM_RIGHT___, \
|
||||
___12_DOX_ALL_THUMBS_BP___ \
|
||||
)
|
||||
|
||||
|
||||
#define Base_dox_bepo6( \
|
||||
K01, K02, K03, K04, K05, K06, \
|
||||
K07, K08, K09, K0A, K0B, K0C, \
|
||||
K11, K12, K13, K14, K15, K16, \
|
||||
K17, K18, K19, K1A, K1B, K1C, \
|
||||
K21, K22, K23, K24, K25, K26, \
|
||||
K27, K28, K29, K2A, K2B, K2C \
|
||||
) \
|
||||
LVARG_edox( \
|
||||
___6SYMBOL_BEPO_L___, \
|
||||
___2_MIDDLE_T_BP___, \
|
||||
___6SYMBOL_BEPO_R___, \
|
||||
ROW1_LEFT_BP6(K01, K02, K03, K04, K05, K06), \
|
||||
___2_MIDDLE_2_BP___, \
|
||||
ROW1_RIGHT_BP6(K07, K08, K09, K0A, K0B, K0C), \
|
||||
\
|
||||
ROW2_LEFT_BP6(K11, K12, K13, K14, K15, K16), \
|
||||
ROW2_RIGHT_BP6(K17, K18, K19, K1A, K1B, K1C), \
|
||||
\
|
||||
ROW3_LEFT_BP6(K21, K22, K23, K24, K25, K26), \
|
||||
___2_MIDDLE_3_BP___, \
|
||||
ROW3_RIGHT_BP6(K27, K28, K29, K2A, K2B, K2C), \
|
||||
\
|
||||
___5_BOTTOM_LEFT_BP___, ___5_BOTTOM_RIGHT_BP___, \
|
||||
___12_DOX_ALL_THUMBS_BP___ \
|
||||
)
|
||||
|
||||
#define Transient_dox6( \
|
||||
K01, K02, K03, K04, K05, K06, \
|
||||
K07, K08, K09, K0A, K0B, K0C, \
|
||||
K11, K12, K13, K14, K15, K16, \
|
||||
K17, K18, K19, K1A, K1B, K1C, \
|
||||
K21, K22, K23, K24, K25, K26, \
|
||||
K27, K28, K29, K2A, K2B, K2C, \
|
||||
K31, K32, K33, K34, K35, K36, \
|
||||
K37, K38, K39, K3A, K3B, K3C \
|
||||
) \
|
||||
LVARG_edox( \
|
||||
K01, K02, K03, K04, K05, K06, \
|
||||
___2___, \
|
||||
K07, K08, K09, K0A, K0B, K0C, \
|
||||
K11, K12, K13, K14, K15, K16, \
|
||||
___2___, \
|
||||
K17, K18, K19, K1A, K1B, K1C, \
|
||||
K21, K22, K23, K24, K25, K26, \
|
||||
K27, K28, K29, K2A, K2B, K2C, \
|
||||
K31, K32, K33, K34, K35, K36, \
|
||||
___2___, \
|
||||
K37, K38, K39, K3A, K3B, K3C, \
|
||||
___5___, ___5___, \
|
||||
___12___ \
|
||||
)
|
||||
|
||||
#define Dox_base(...) Base_dox(__VA_ARGS__)
|
||||
#define Dox_bepo_base(...) Base_dox_bepo(__VA_ARGS__)
|
||||
#define Dox_bepo_base6(...) Base_dox_bepo6(__VA_ARGS__)
|
||||
#define Dox_transient(...) Transient_dox6(__VA_ARGS__)
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
Copyright 2018 Eric Gebhart <e.a.gebhart@gmail.com>
|
||||
Copyright 2018-2022 Eric Gebhart <e.a.gebhart@gmail.com>
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
@ -15,34 +15,4 @@
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#include "keymap_bepo.h"
|
||||
#include "ericgebhart.h"
|
||||
|
||||
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
||||
// 4x10
|
||||
[_DVORAK] = BASE_5x14(___NUMS___, ___DVORAK___),
|
||||
[_QWERTY] = BASE_5x14(___NUMS___, ___QWERTY___),
|
||||
[_COLEMAK] = BASE_5x14(___NUMS___, ___COLEMAK_DH___),
|
||||
[_BEAKL] = BASE_5x14(___BKLNUMS___, ___BEAKL15___),
|
||||
|
||||
//[_DVORAK_BP] = BASE_5x14_bepo(___DVORAK_FR___),
|
||||
//[_BEAKL_BP] = BASE_5x14_bepo(___BEAKL15_FR___),
|
||||
|
||||
// 4x12
|
||||
//[_BEPO] = BASE_5x14_bepo6(___BEPO6_FR___),
|
||||
|
||||
// transient macro takes a 3x12 for args
|
||||
[_SYMB] = TRANSIENT_5x14(___12___, ___SYMB_BEAKLA_3x12___),
|
||||
//[_SYMB_BP] = TRANSIENT_5x14(___SYMB_BEAKLA_BP_3x12___),
|
||||
|
||||
[_TOPROWS] = TRANSIENT_5x14(___12___, ___TOPROWS_3x12___),
|
||||
//[_TOPROWS_BP] = TRANSIENT_5x14(___TOPROWS_BP_3x12___),
|
||||
|
||||
[_KEYPAD] = TRANSIENT_5x14(___12___, ___KP_C_3x12___),
|
||||
//[_KEYPAD_BP] = TRANSIENT_5x14(___KP_C_BP_3x12___),
|
||||
|
||||
// Navigation and control
|
||||
[_NAV] = TRANSIENT_5x14(___12___, ___NAV_3x12___),
|
||||
[_LAYERS] = TRANSIENT_5x14(___12___, ___LAYERS_3x12___),
|
||||
//[_RGB] = TRANSIENT_5x14(___12___, ___RGB_3x12___),
|
||||
};
|
||||
// See: users/ericgebhart.
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
Copyright 2018 Eric Gebhart <e.a.gebhart@gmail.com>
|
||||
Copyright 2018-2022 Eric Gebhart <e.a.gebhart@gmail.com>
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
@ -14,40 +14,5 @@
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
#include "keymap_bepo.h"
|
||||
#include "ericgebhart.h"
|
||||
|
||||
#define LAYOUT_PVARG(...) LAYOUT_pretty(__VA_ARGS__)
|
||||
|
||||
#define Kinesis_base(...) Base_4x6_4_6(__VA_ARGS__)
|
||||
#define Kinesis_bepo_base(...) Base_bepo_4x6_4_6(__VA_ARGS__)
|
||||
#define Kinesis_bepo_base6(...) Base_bepo6_4x6_4_6(__VA_ARGS__)
|
||||
#define Kinesis_transient(...) Transient6_4x6_4_6(__VA_ARGS__)
|
||||
|
||||
|
||||
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
||||
|
||||
// Qwerty Base layers
|
||||
[_DVORAK] = Kinesis_base(___NUMS___, ___DVORAK___),
|
||||
[_QWERTY] = Kinesis_base(___NUMS___, ___QWERTY___),
|
||||
[_COLEMAK] = Kinesis_base(___NUMS___, ___COLEMAK_DH___),
|
||||
[_BEAKL] = Kinesis_base(___BKLNUMS___, ___BEAKL15___),
|
||||
// Bepo Base layers
|
||||
[_DVORAK_BP] = Kinesis_bepo_base(___NUMS_BP___, ___DVORAK_FR___),
|
||||
[_BEAKL_BP] = Kinesis_bepo_base(___BKLNUMS_BP___, ___BEAKL15_FR___),
|
||||
|
||||
[_BEPO] = Kinesis_bepo_base6(___BEPO6___),
|
||||
|
||||
// transient layers.
|
||||
// Switch to using a transient layer macro
|
||||
[_SYMB] = Kinesis_transient(___12_FUNC___, ___SYMB_BEAKLA_3x12___),
|
||||
[_SYMB_BP] = Kinesis_transient(___12_FUNC___, ___SYMB_BEAKLA_BP_3x12___),
|
||||
|
||||
[_TOPROWS] = Kinesis_transient(___12___, ___TOPROWS_3x12___),
|
||||
[_TOPROWS_BP] = Kinesis_transient(___12___, ___TOPROWS_BP_3x12___),
|
||||
|
||||
[_NAV] = Kinesis_transient(___12___, ___NAV_3x12___),
|
||||
[_LAYERS] = Kinesis_transient(___12___, ___LAYERS_3x12___),
|
||||
[_ADJUST] = Kinesis_transient(___12___, ___ADJUST_3x12___),
|
||||
//[_RGB] = Kinesis_transient(___12___, ___RGB_3x12___),
|
||||
};
|
||||
// See: users/ericgebhart.
|
||||
|
@ -11,6 +11,5 @@ BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality
|
||||
MIDI_ENABLE = no # MIDI controls
|
||||
AUDIO_ENABLE = no # Audio output
|
||||
UNICODE_ENABLE = no # Unicode
|
||||
RGBLIGHT_ENABLE = no # Enable WS2812 RGB underlight.
|
||||
RGBLIGHT_ENABLE = no # Enable WS2812 RGB underlight.
|
||||
SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
Copyright 2018 Eric Gebhart <e.a.gebhart@gmail.com>
|
||||
Copyright 2018-2022 Eric Gebhart <e.a.gebhart@gmail.com>
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
@ -14,88 +14,5 @@
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
#include "ericgebhart.h"
|
||||
#include "layouts.h"
|
||||
|
||||
|
||||
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
||||
// Qwerty based Base layers
|
||||
[_DVORAK] = Rebound_base(___DVORAK___),
|
||||
[_BEAKL] = Rebound_base(___BEAKL15___),
|
||||
[_COLEMAK] = Rebound_base(___COLEMAK_DH___),
|
||||
[_QWERTY] = Rebound_base(___QWERTY___),
|
||||
|
||||
// Bepo base layers
|
||||
[_BEAKL_BP] = Rebound_base_bepo(___BEAKL15_FR___),
|
||||
[_DVORAK_BP] = Rebound_base_bepo(___DVORAK_FR___),
|
||||
[_BEPO] = Rebound_base_bepo6(___BEPO6___),
|
||||
|
||||
// Transient layers.
|
||||
[_SYMB] = Rebound_transient(___SYMB_BEAKLA_3x12___),
|
||||
[_SYMB_BP] = Rebound_transient(___SYMB_BEAKLA_BP_3x12___),
|
||||
|
||||
[_KEYPAD] = Rebound_transient(___KP_C_3x12___),
|
||||
[_KEYPAD_BP] = Rebound_transient(___KP_C_BP_3x12___),
|
||||
|
||||
[_TOPROWS] = Rebound_transient(___TOPROWS_3x12___),
|
||||
[_TOPROWS_BP] = Rebound_transient(___TOPROWS_BP_3x12___),
|
||||
[_NAV] = Rebound_transient(___NAV_3x12___),
|
||||
[_LAYERS] = Rebound_transient(___LAYERS_3x12___),
|
||||
};
|
||||
|
||||
|
||||
bool encoder_update_user(uint8_t index, bool clockwise) {
|
||||
switch(get_highest_layer(layer_state)){
|
||||
case _DVORAK:
|
||||
if (clockwise) {
|
||||
tap_code16(KC_VOLD);
|
||||
} else {
|
||||
tap_code16(KC_VOLU);
|
||||
}
|
||||
break;
|
||||
|
||||
case _NAV:
|
||||
if (clockwise) {
|
||||
tap_code16(S(KC_TAB));
|
||||
} else {
|
||||
tap_code16(KC_TAB);
|
||||
}
|
||||
break;
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
#ifdef OLED_ENABLE
|
||||
void oled_task_user(void) {
|
||||
// Host Keyboard Layer Status
|
||||
oled_write_P(PSTR(""), false);
|
||||
|
||||
switch (get_highest_layer(layer_state)) {
|
||||
case _BASE:
|
||||
oled_write_P(PSTR("Rebound\n"), false);
|
||||
oled_write_P(PSTR("Rev4\n"), false);
|
||||
break;
|
||||
case _NAV:
|
||||
oled_write_P(PSTR("Nav\n"), false);
|
||||
break;
|
||||
case _SYMB_BEAKL:
|
||||
case _SYMB:
|
||||
oled_write_P(PSTR("Symbols\n"), false);
|
||||
break;
|
||||
case _KEYPAD:
|
||||
oled_write_P(PSTR("Top Rows\n"), false);
|
||||
break;
|
||||
default:
|
||||
// Or use the write_ln shortcut over adding '\n' to the end of your string
|
||||
oled_write_ln_P(PSTR("Undefined"), false);
|
||||
}
|
||||
|
||||
// Host Keyboard LED Status
|
||||
led_t led_state = host_keyboard_led_state();
|
||||
oled_write_P(led_state.num_lock ? PSTR("NUM ") : PSTR(" "), false);
|
||||
oled_write_P(led_state.caps_lock ? PSTR("CAPS") : PSTR(" "), false);
|
||||
oled_write_P(led_state.scroll_lock ? PSTR("SCR ") : PSTR(" "), false);
|
||||
|
||||
}
|
||||
|
||||
#endif
|
||||
// See: users/ericgebhart.
|
||||
|
@ -1,113 +0,0 @@
|
||||
/*
|
||||
Copyright 2018 Eric Gebhart <e.a.gebhart@gmail.com>
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 2 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
/********************************************************************/
|
||||
/* Rebound 4 rows, 1x12, 3x13 */
|
||||
/********************************************************************/
|
||||
|
||||
#define LVARG_rebound(...) LAYOUT_all(__VA_ARGS__)
|
||||
#define LAYOUT_rebound_base( \
|
||||
K01, K02, K03, K04, K05, \
|
||||
K06, K07, K08, K09, K0A, \
|
||||
K11, K12, K13, K14, K15, \
|
||||
K16, K17, K18, K19, K1A, \
|
||||
K21, K22, K23, K24, K25, \
|
||||
K26, K27, K28, K29, K2A \
|
||||
) \
|
||||
LVARG_rebound( \
|
||||
ROW1_LEFT(K01, K02, K03, K04, K05), \
|
||||
ROW1_RIGHT(K06, K07, K08, K09, K0A), \
|
||||
\
|
||||
ROW2_LEFT(K11, K12, K13, K14, K15), \
|
||||
KC_CCCV, \
|
||||
ROW2_RIGHT(K16, K17, K18, K19, K1A), \
|
||||
\
|
||||
ROW3_LEFT(K21, K22, K23, K24, K25), \
|
||||
MO(_ADJUST), \
|
||||
ROW3_RIGHT(K26, K27, K28, K29, K2A), \
|
||||
___13_BOTTOM___ \
|
||||
)
|
||||
|
||||
#define LAYOUT_rebound_base_bepo( \
|
||||
K01, K02, K03, K04, K05, \
|
||||
K06, K07, K08, K09, K0A, \
|
||||
K11, K12, K13, K14, K15, \
|
||||
K16, K17, K18, K19, K1A, \
|
||||
K21, K22, K23, K24, K25, \
|
||||
K26, K27, K28, K29, K2A \
|
||||
) \
|
||||
LVARG_rebound( \
|
||||
ROW1_LEFT_BP(K01, K02, K03, K04, K05), \
|
||||
ROW1_RIGHT_BP(K06, K07, K08, K09, K0A), \
|
||||
\
|
||||
ROW2_LEFT_BP(K11, K12, K13, K14, K15), \
|
||||
KC_CCCV, \
|
||||
ROW2_RIGHT_BP(K16, K17, K18, K19, K1A), \
|
||||
\
|
||||
ROW3_LEFT_BP(K21, K22, K23, K24, K25), \
|
||||
MO(_ADJUST), \
|
||||
ROW3_RIGHT_BP(K26, K27, K28, K29, K2A), \
|
||||
___13_BOTTOM_BP___ \
|
||||
)
|
||||
|
||||
// Just for bepo because it's a 3x6 matrix on each side.
|
||||
// So 3 pairs of 6 keys, left and right.
|
||||
#define LAYOUT_rebound_base_bepo6( \
|
||||
K01, K02, K03, K04, K05, K06, \
|
||||
K07, K08, K09, K0A, K0B, K0C, \
|
||||
K11, K12, K13, K14, K15, K16, \
|
||||
K17, K18, K19, K1A, K1B, K1C, \
|
||||
K21, K22, K23, K24, K25, K26, \
|
||||
K27, K28, K29, K2A, K2B, K2C \
|
||||
) \
|
||||
LVARG_rebound( \
|
||||
ROW1_LEFT_BP6(K01, K02, K03, K04, K05, K06), \
|
||||
ROW1_RIGHT_BP6(K07, K08, K09, K0A, K0B, K0C), \
|
||||
\
|
||||
ROW2_LEFT_BP6(K11, K12, K13, K14, K15, K16), \
|
||||
KC_CCCV, \
|
||||
ROW2_RIGHT_BP6(K17, K18, K19, K1A, K1B, K1C), \
|
||||
\
|
||||
ROW3_LEFT_BP6(K21, K22, K23, K24, K25, K26), \
|
||||
MO(_ADJUST), \
|
||||
ROW3_RIGHT_BP6(K27, K28, K29, K2A, K2B, K2C), \
|
||||
___13_BOTTOM_BP___ \
|
||||
)
|
||||
|
||||
#define LAYOUT_rebound_transient( \
|
||||
K01, K02, K03, K04, K05, K06, \
|
||||
K07, K08, K09, K0A, K0B, K0C, \
|
||||
K11, K12, K13, K14, K15, K16, \
|
||||
K17, K18, K19, K1A, K1B, K1C, \
|
||||
K21, K22, K23, K24, K25, K26, \
|
||||
K27, K28, K29, K2A, K2B, K2C \
|
||||
) \
|
||||
LVARG_rebound( \
|
||||
K01, K02, K03, K04, K05, K06, \
|
||||
K07, K08, K09, K0A, K0B, K0C, \
|
||||
K11, K12, K13, K14, K15, K16, \
|
||||
___, \
|
||||
K17, K18, K19, K1A, K1B, K1C, \
|
||||
K21, K22, K23, K24, K25, K26, \
|
||||
___, \
|
||||
K27, K28, K29, K2A, K2B, K2C, \
|
||||
___, ___12___)
|
||||
|
||||
#define Rebound_base(...) LAYOUT_rebound_base(__VA_ARGS__)
|
||||
#define Rebound_base_bepo(...) LAYOUT_rebound_base_bepo(__VA_ARGS__)
|
||||
#define Rebound_base_bepo6(...) LAYOUT_rebound_base_bepo6(__VA_ARGS__)
|
||||
#define Rebound_transient(...) LAYOUT_rebound_transient(__VA_ARGS__)
|
@ -1,6 +1,7 @@
|
||||
# Build Options
|
||||
# change yes to no to disable
|
||||
#
|
||||
#
|
||||
BOOTMAGIC_ENABLE = no # Enable Bootmagic Lite
|
||||
MOUSEKEY_ENABLE = yes # Mouse keys
|
||||
EXTRAKEY_ENABLE = yes # Audio control and System control
|
||||
@ -11,6 +12,7 @@ BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality
|
||||
MIDI_ENABLE = no # MIDI controls
|
||||
AUDIO_ENABLE = no # Audio output
|
||||
UNICODE_ENABLE = no # Unicode
|
||||
BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID
|
||||
RGBLIGHT_ENABLE = no # Enable WS2812 RGB underlight.
|
||||
SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend
|
||||
TAP_DANCE_ENABLE = yes # Enable the tap dance feature.
|
||||
|
25
keyboards/splitkb/kyria/keymaps/ericgebhart/config.h
Executable file
25
keyboards/splitkb/kyria/keymaps/ericgebhart/config.h
Executable file
@ -0,0 +1,25 @@
|
||||
/*
|
||||
This is the c configuration file for the keymap
|
||||
|
||||
Copyright 2012 Jun Wako <wakojun@gmail.com>
|
||||
Copyright 2015 Jack Humbert
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 2 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
// otherwise the other promicro v3 isn't found
|
||||
#define SPLIT_USB_DETECT
|
||||
#define OLED_DISPLAY_128X64
|
18
keyboards/splitkb/kyria/keymaps/ericgebhart/keymap.c
Normal file
18
keyboards/splitkb/kyria/keymaps/ericgebhart/keymap.c
Normal file
@ -0,0 +1,18 @@
|
||||
/*
|
||||
Copyright 2018-2022 Eric Gebhart <e.a.gebhart@gmail.com>
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 2 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
// See: users/ericgebhart.
|
3
keyboards/splitkb/kyria/keymaps/ericgebhart/rules.mk
Normal file
3
keyboards/splitkb/kyria/keymaps/ericgebhart/rules.mk
Normal file
@ -0,0 +1,3 @@
|
||||
EXTRAKEY_ENABLE = no # Audio control and System control
|
||||
ENCODER_ENABLE = no # Enables the use of one or more encoders
|
||||
RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
Copyright 2018 Eric Gebhart <e.a.gebhart@gmail.com>
|
||||
Copyright 2018-2022 Eric Gebhart <e.a.gebhart@gmail.com>
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
@ -15,125 +15,4 @@
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#include "keymap_bepo.h"
|
||||
#include "ericgebhart.h"
|
||||
|
||||
|
||||
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
||||
// 4x10
|
||||
[_DVORAK] = BASE_5x15(___NUMS___, ___DVORAK___),
|
||||
[_QWERTY] = BASE_5x15(___NUMS___, ___QWERTY___),
|
||||
[_COLEMAK] = BASE_5x15(___NUMS___, ___COLEMAK_DH___),
|
||||
[_BEAKL] = BASE_5x15(___BKLNUMS___, ___BEAKL15___),
|
||||
|
||||
//[_DVORAK_BP] = BASE_5x15_bepo(___DVORAK_FR___),
|
||||
//[_BEAKL_BP] = BASE_5x15_bepo(___BEAKL15_FR___),
|
||||
|
||||
// 4x12
|
||||
//[_BEPO] = BASE_5x15_bepo6(___BEPO6_FR___),
|
||||
|
||||
// transient macro takes a 4x12 for args
|
||||
[_SYMB] = TRANSIENT_5x15(___12___, ___SYMB_BEAKLA_3x12___),
|
||||
//[_SYMB_BP] = TRANSIENT_5x15(___12___, ___SYMB_BEAKLA_BP_3x12___),
|
||||
|
||||
[_TOPROWS] = TRANSIENT_5x15(___12___, ___TOPROWS_3x12___),
|
||||
//[_TOPROWS_BP] = TRANSIENT_5x15(___12___, ___TOPROWS_BP_3x12___),
|
||||
|
||||
[_KEYPAD] = TRANSIENT_5x15(___12___, ___KP_C_3x12___),
|
||||
//[_KEYPAD_BP] = TRANSIENT_5x15(___12___, ___KP_C_BP_3x12___),
|
||||
|
||||
// Navigation and control
|
||||
[_NAV] = TRANSIENT_5x15(___12___, ___NAV_3x12___),
|
||||
[_LAYERS] = TRANSIENT_5x15(___12___, ___LAYERS_3x12___),
|
||||
//[_RGB] = TRANSIENT_5x15(___12___, ___RGB_3x12___),
|
||||
[_ADJUST] = TRANSIENT_5x15(___12___, ___ADJUST_3x12___),
|
||||
};
|
||||
|
||||
|
||||
/********************************************************************************/
|
||||
/* Using layers to do RGB underlighting */
|
||||
/********************************************************************************/
|
||||
|
||||
const rgblight_segment_t PROGMEM on_bepo[] = RGBLIGHT_LAYER_SEGMENTS(
|
||||
{0, 2, HSV_AZURE}
|
||||
);
|
||||
|
||||
const rgblight_segment_t PROGMEM bepo[] = RGBLIGHT_LAYER_SEGMENTS(
|
||||
{3, 2, HSV_MAGENTA}
|
||||
);
|
||||
|
||||
const rgblight_segment_t PROGMEM dvorak[] = RGBLIGHT_LAYER_SEGMENTS(
|
||||
{3, 2, HSV_AZURE}
|
||||
);
|
||||
|
||||
const rgblight_segment_t PROGMEM media[] = RGBLIGHT_LAYER_SEGMENTS(
|
||||
{5, 1, HSV_GREEN}
|
||||
);
|
||||
|
||||
const rgblight_segment_t PROGMEM symbol[] = RGBLIGHT_LAYER_SEGMENTS(
|
||||
{4, 2, HSV_GOLD}
|
||||
);
|
||||
|
||||
const rgblight_segment_t PROGMEM keypad[] = RGBLIGHT_LAYER_SEGMENTS(
|
||||
{4, 2, HSV_BLUE}
|
||||
);
|
||||
|
||||
const rgblight_segment_t PROGMEM layers[] = RGBLIGHT_LAYER_SEGMENTS(
|
||||
{5, 1, HSV_RED}
|
||||
);
|
||||
|
||||
const rgblight_segment_t PROGMEM rgb[] = RGBLIGHT_LAYER_SEGMENTS(
|
||||
{5, 1, HSV_ORANGE}
|
||||
);
|
||||
|
||||
const rgblight_segment_t* const PROGMEM rgb_layers[] = RGBLIGHT_LAYERS_LIST(on_bepo, bepo, dvorak, media, symbol,
|
||||
keypad, layers, rgb);
|
||||
|
||||
void keyboard_post_init_user(void) {
|
||||
rgblight_sethsv_noeeprom(HSV_PURPLE);
|
||||
rgblight_layers = rgb_layers;
|
||||
}
|
||||
|
||||
layer_state_t layer_state_set_user(layer_state_t state) {
|
||||
// rgblight_set_layer_state(0, !on_qwerty());
|
||||
rgblight_set_layer_state(0, layer_state_cmp(state, _DVORAK));
|
||||
|
||||
rgblight_set_layer_state(1, layer_state_cmp(state, _BEPO));
|
||||
rgblight_set_layer_state(2, layer_state_cmp(state, _DVORAK));
|
||||
//|| layer_state_cmp(state, DVORAK_ON_BEPO)));
|
||||
rgblight_set_layer_state(3, layer_state_cmp(state, _NAV));
|
||||
rgblight_set_layer_state(4, layer_state_cmp(state, _SYMB) );
|
||||
|
||||
//(layer_state_cmp(state, SYMB) || (layer_state_cmp(state, SYMB_ON_BEPO))));
|
||||
rgblight_set_layer_state(5, layer_state_cmp(state, _KEYPAD) );
|
||||
///(layer_state_cmp(state, KEYPAD) || (layer_state_cmp(state, KEYPAD_ON_BEPO))));
|
||||
rgblight_set_layer_state(6, layer_state_cmp(state, _LAYERS));
|
||||
rgblight_set_layer_state(7, layer_state_cmp(state, _RGB));
|
||||
return state;
|
||||
}
|
||||
|
||||
/* void suspend_power_down_user(void) { */
|
||||
/* rgblight_disable(); */
|
||||
/* } */
|
||||
|
||||
/* void suspend_wakeup_init_user(void) { */
|
||||
/* rgblight_enable(); */
|
||||
/* } */
|
||||
|
||||
/* bool is_shift_pressed = false; */
|
||||
|
||||
/* bool led_update_user(led_t led_state) { */
|
||||
/* rgblight_set_layer_state(2, is_shift_pressed != led_state.caps_lock); */
|
||||
/* return true; */
|
||||
/* } */
|
||||
|
||||
/* bool process_record_user(uint16_t keycode, keyrecord_t* record) { */
|
||||
/* switch (keycode) { */
|
||||
/* case KC_LSFT: */
|
||||
/* case KC_RSFT: */
|
||||
/* is_shift_pressed = record->event.pressed; */
|
||||
/* rgblight_set_layer_state(2, is_shift_pressed != host_keyboard_led_state().caps_lock); */
|
||||
/* default: */
|
||||
/* return true; */
|
||||
/* } */
|
||||
/* } */
|
||||
// See: users/ericgebhart.
|
||||
|
@ -1 +0,0 @@
|
||||
# The default keymap for xd75, with led controls
|
@ -1,3 +1,3 @@
|
||||
RGBLIGHT_ENABLE = yes
|
||||
RGBLIGHT_ANIMATION = yes
|
||||
RGBLIGHT_ANIMATION = no
|
||||
# BACKLIGHT_ENABLE = yes
|
||||
|
@ -1,94 +0,0 @@
|
||||
/*
|
||||
Copyright 2018 Eric Gebhart <e.a.gebhart@gmail.com>
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 2 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#include "ericgebhart.h"
|
||||
#include "altlocal_keys.h"
|
||||
|
||||
#include "keymap_bepo.h"
|
||||
|
||||
// These are the keys for dvorak on bepo. column one is the keycode and mods for
|
||||
// the unshifted key, the second column is the keycode and mods for the shifted key.
|
||||
// GR is Good Range. It subtracts SAFE_RANGE from the keycode so we can make a
|
||||
// reasnably sized array without difficulties. The macro is for the constant declarations
|
||||
// the function is for when we use it.
|
||||
const uint16_t key_translations[][2][2] = {
|
||||
[GR(DB_1)] = {{BP_DQUO, MOD_LSFT}, {BP_DCIR, MOD_LSFT}},
|
||||
[GR(DB_2)] = {{BP_LDAQ, MOD_LSFT}, {BP_AT, MOD_NONE}},
|
||||
[GR(DB_3)] = {{BP_RDAQ, MOD_LSFT}, {BP_DLR, MOD_LSFT}},
|
||||
[GR(DB_4)] = {{BP_LPRN, MOD_LSFT}, {BP_DLR, MOD_NONE}},
|
||||
[GR(DB_5)] = {{BP_RPRN, MOD_LSFT}, {BP_PERC, MOD_NONE}},
|
||||
[GR(DB_6)] = {{BP_AT, MOD_LSFT}, {BP_AT, MOD_BIT(KC_RALT)}},
|
||||
[GR(DB_7)] = {{BP_PLUS, MOD_LSFT}, {BP_P, MOD_BIT(KC_RALT)}},
|
||||
[GR(DB_8)] = {{BP_MINS, MOD_LSFT}, {BP_ASTR, MOD_NONE}},
|
||||
[GR(DB_9)] = {{BP_SLSH, MOD_LSFT}, {BP_LPRN, MOD_NONE}},
|
||||
[GR(DB_0)] = {{BP_ASTR, MOD_LSFT}, {BP_RPRN, MOD_NONE}},
|
||||
[GR(DB_GRV)] = {{BP_PERC, MOD_LSFT}, {BP_K, MOD_BIT(KC_RALT)}},
|
||||
[GR(DB_SCOLON)] = {{BP_COMM, MOD_LSFT}, {BP_DOT, MOD_LSFT}},
|
||||
[GR(DB_SLASH)] = {{BP_SLSH, MOD_NONE}, {BP_QUOT, MOD_LSFT}},
|
||||
[GR(DB_BACKSLASH)] = {{BP_AGRV, MOD_BIT(KC_RALT)}, {BP_B, MOD_BIT(KC_RALT)}},
|
||||
[GR(DB_EQL)] = {{BP_EQL, MOD_NONE}, {BP_PLUS, MOD_NONE}},
|
||||
[GR(DB_COMM)] = {{BP_COMM, MOD_NONE}, {BP_LDAQ, MOD_BIT(KC_RALT)}},
|
||||
[GR(DB_DOT)] = {{BP_DOT, MOD_NONE}, {BP_RDAQ, MOD_BIT(KC_RALT)}},
|
||||
[GR(DB_QUOT)] = {{BP_QUOT, MOD_NONE}, {BP_DQUO, MOD_NONE}},
|
||||
[GR(DB_MINUS)] = {{BP_MINS, MOD_NONE}, {KC_SPC, MOD_BIT(KC_RALT)}},
|
||||
[GR(DB_LPRN)] = {{BP_LPRN, MOD_NONE}, {BP_LPRN, MOD_BIT(KC_RALT)}},
|
||||
[GR(DB_RPRN)] = {{BP_RPRN, MOD_NONE}, {BP_RPRN, MOD_BIT(KC_RALT)}},
|
||||
[GR(DB_LBRC)] = {{BP_Y, MOD_BIT(KC_RALT)}, {BP_LPRN, MOD_BIT(KC_RALT)}},
|
||||
[GR(DB_RBRC)] = {{BP_X, MOD_BIT(KC_RALT)}, {BP_RPRN, MOD_BIT(KC_RALT)}},
|
||||
// For the symbol layer
|
||||
[GR(DB_HASH)] = {{BP_DLR, MOD_LSFT}, {BP_DLR, MOD_LSFT}},
|
||||
[GR(DB_LCBR)] = {{BP_LPRN, MOD_BIT(KC_RALT)}, {BP_LPRN, MOD_BIT(KC_RALT)}},
|
||||
[GR(DB_RCBR)] = {{BP_LPRN, MOD_BIT(KC_RALT)}, {BP_RPRN, MOD_BIT(KC_RALT)}},
|
||||
[GR(DB_PIPE)] = {{BP_B, MOD_BIT(KC_RALT)}, {BP_B, MOD_BIT(KC_RALT)}},
|
||||
[GR(DB_TILD)] = {{BP_K, MOD_BIT(KC_RALT)}, {BP_K, MOD_BIT(KC_RALT)}},
|
||||
[GR(DB_CIRC)] = {{BP_AT, MOD_BIT(KC_RALT)}, {BP_AT, MOD_BIT(KC_RALT)}},
|
||||
[GR(DB_LESS)] = {{BP_LDAQ, MOD_BIT(KC_RALT)}, {BP_LDAQ, MOD_BIT(KC_RALT)}},
|
||||
[GR(DB_GRTR)] = {{BP_RDAQ, MOD_BIT(KC_RALT)}, {BP_RDAQ, MOD_BIT(KC_RALT)}},
|
||||
// Keys for BEAKL on Qwerty
|
||||
[GR(BQ_COMM)] = {{KC_COMMA, MOD_NONE}, {KC_1, MOD_LSFT}},
|
||||
[GR(BQ_DOT)] = {{KC_DOT, MOD_NONE}, {KC_2, MOD_LSFT}},
|
||||
[GR(BQ_QUOT)] = {{KC_QUOT, MOD_NONE}, {KC_GRV, MOD_NONE}},
|
||||
};
|
||||
|
||||
|
||||
uint8_t gr(uint16_t kc){
|
||||
return (kc - SAFE_RANGE);
|
||||
}
|
||||
// send the right keycode for the right mod.
|
||||
// remove the mods we are taking care of,
|
||||
// send our keycodes then restore them.
|
||||
// all so we can make dvorak keys from bepo keycodes.
|
||||
void send_keycode(uint16_t kc){
|
||||
uint8_t tmp_mods = get_mods();
|
||||
bool is_shifted = ( tmp_mods & (MOD_BIT(KC_LSFT)|MOD_BIT(KC_RSFT)) );
|
||||
//uint8_t key[2][2] = key_translations[GR(kc)];
|
||||
// need to turn of the shift if it is on.
|
||||
unregister_mods((MOD_BIT(KC_LSFT)|MOD_BIT(KC_RSFT)));
|
||||
if(is_shifted){
|
||||
register_mods(SHIFTED_MODS(kc));
|
||||
register_code(SHIFTED_KEY(kc));
|
||||
unregister_code(SHIFTED_KEY(kc));
|
||||
unregister_mods(SHIFTED_MODS(kc));
|
||||
} else{
|
||||
register_mods(UNSHIFTED_MODS(kc));
|
||||
register_code(UNSHIFTED_KEY(kc));
|
||||
unregister_code(UNSHIFTED_KEY(kc));
|
||||
unregister_mods(UNSHIFTED_MODS(kc));
|
||||
}
|
||||
clear_mods();
|
||||
register_mods(tmp_mods);
|
||||
}
|
90
users/ericgebhart/base_layers/accents.h
Normal file
90
users/ericgebhart/base_layers/accents.h
Normal file
@ -0,0 +1,90 @@
|
||||
#pragma once
|
||||
/*
|
||||
Copyright 2018-2022 Eric Gebhart <e.a.gebhart@gmail.com>
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 2 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
// probably best to have e and é on different fingers.
|
||||
|
||||
// doesnt work, oled displays garbage
|
||||
/* #define CARTE_ACCENTED \ */
|
||||
/* carte_de_map(" æœêùì ¿ïüöë ", \ */
|
||||
/* " àôèéî ûçñß^", \ */
|
||||
/* " âöíúí ") */
|
||||
|
||||
// need to figure out a better way to display these on the oled.
|
||||
#define CARTE_ACCENTED \
|
||||
carte_de_map(" aoeui ?iuoe ", \
|
||||
" aoeei ucnS^", \
|
||||
" aoiúi ")
|
||||
|
||||
#define ___ACCENTED___ \
|
||||
LANG_MAP(_AE, _OE, _ECIR, _UGRV, _IGRV, _IQUE, _IIAE, _UIAE, _OIAE, _EIAE, \
|
||||
_AGRV, _OCIR, _EGRV, _EACU, _ICIR, _UCIR, _CCED, _NTIL, _SS, _DCIR, \
|
||||
_AACU, _ODIA, _IACU, _UACU, _IACU, _SPC, _SPC, _SPC , _SPC, _SPC)
|
||||
|
||||
|
||||
// A dead key layer, optimized for Most common,
|
||||
// western european.
|
||||
#define CARTE_MORTE \
|
||||
carte_de_map(" ˝˘̉ ̛ ˙° ", \
|
||||
"/`^´ ¸¨~¤", \
|
||||
" ,ˇ. ˛µ¯")
|
||||
|
||||
#define ___MORTE___ \
|
||||
LANG_MAP(_, _DACU, _BREV, _HOKA, _, _, _HORN, _DOTA, _RNGA, _, \
|
||||
_DSLS, _DGRV, _DCIR, _ACUT, _, _, _CEDL, _DIAE, _DTIL, _CURR, \
|
||||
_, _DCMM, _CARN, _DOTB, _, _, _OGON, _DGRK, _MACR, _)
|
||||
|
||||
// Just taking a guess and putting the things I know are most
|
||||
// used in easy to use places., not sure about ntil and ss, put
|
||||
// them in their dvorak spots on the home row.
|
||||
|
||||
/* #define CARTE_ACCENTS_MORTE \ */
|
||||
/* carte_de_map(" æœêùì ¿`^´ë ", \ */
|
||||
/* " àôèéî ¸çñß~", \ */
|
||||
/* " âö,úí ¨ˇ° ") */
|
||||
|
||||
#define CARTE_ACCENTS_MORTE \
|
||||
carte_de_map(" aoeui ?`^'e ", \
|
||||
" aoeei ,cnS~", \
|
||||
" ao,ui \"^o")
|
||||
|
||||
#define ___ACCENTS_MORTE___ \
|
||||
LANG_MAP(_AE, _OE, _ECIR, _UGRV, _IGRV, _IQUE, _DGRV, _DCIR, _ACUT, _EIAE, \
|
||||
_AGRV, _OCIR, _EGRV, _EACU, _ICIR, _CEDL, _CCED, _NTIL, _SS, _DTIL, \
|
||||
_AACU, _OIAE, _DCMM, _UACU, _IACU, _OGON, _DIAE, _CARN, _RNGA, _HORN)
|
||||
|
||||
/* // DEAD layer. */
|
||||
/* BP_DCIR // ^ (dead) */
|
||||
/* BP_ACUT // ´ (dead) */
|
||||
/* BP_DGRV // ` (dead) */
|
||||
/* BP_CARN // ˇ (dead) */
|
||||
/* BP_DSLS // / (dead) */
|
||||
/* BP_BREV // ˘ (dead) */
|
||||
/* BP_DIAE // ¨ (dead) */
|
||||
/* BP_DTIL // ~ (dead) */
|
||||
/* BP_MACR // ¯ (dead) */
|
||||
/* BP_CEDL // ¸ (dead) */
|
||||
/* BP_RNGA // ° (dead) */
|
||||
/* BP_DGRK // µ (dead Greek key) */
|
||||
/* BP_OGON // ˛ (dead) */
|
||||
/* BP_DACU // ˝ (dead) */
|
||||
/* BP_DOTA // ˙ (dead) */
|
||||
/* BP_CURR // ¤ (dead) */
|
||||
/* BP_HORN // ̛ (dead) */
|
||||
/* BP_DCMM // , (dead) */
|
||||
/* BP_HOKA // ̉ (dead) */
|
||||
/* BP_DOTB // ̣ (dead) */
|
150
users/ericgebhart/base_layers/alt.h
Normal file
150
users/ericgebhart/base_layers/alt.h
Normal file
@ -0,0 +1,150 @@
|
||||
#pragma once
|
||||
/*
|
||||
Copyright 2018-2022 Eric Gebhart <e.a.gebhart@gmail.com>
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 2 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
// e goes on the left thumb
|
||||
#define CARTE_MALTRON \
|
||||
carte_de_map(" qpycb vmuzl", \
|
||||
" anisf ctdor", \
|
||||
" ;/jg, .wk-x e")
|
||||
|
||||
#define ___MALTRON___ \
|
||||
LANG_MAP(_Q, _P, _Y, _C, _B, _V, _M, _U, _Z, _L, \
|
||||
_A, _N, _I, _S, _F, _D, _T, _D, _O, _R, \
|
||||
TL_SCLN, TL_SLSH, _J, _G, TL_COMM, TL_DOT, _W, _K, TL_MINS, _X)
|
||||
|
||||
#define CARTE_EUCALYN \
|
||||
carte_de_map(" /,.fq aoeiu", \
|
||||
" zxcvw mrdyp", \
|
||||
" gtksn bhjl;")
|
||||
|
||||
#define ___EUCALYN___ \
|
||||
LANG_MAP(TL_SLSH, TL_COMM, TL_DOT, _F, _Q, _A, _O, _E, _I, _U, \
|
||||
_Z, _X, _C, _V, _W, _M, _R, _D, _Y, _P, \
|
||||
_G, _T, _K, _S, _N, _B, _H, _J, _L, TL_SCLN)
|
||||
|
||||
|
||||
|
||||
// RSTHD
|
||||
/* j c y f k | z l , u q = */
|
||||
/* r s t h d | m n a i o - */
|
||||
/* / v g p b | x w . ; ' */
|
||||
/* e */
|
||||
|
||||
// need a thumb cluster for this.
|
||||
// removed = and -, edge keys if you've got them.
|
||||
// e goes on left thumb
|
||||
|
||||
#define CARTE_RSTHD \
|
||||
carte_de_map(" jcyfk zl,uq", \
|
||||
" rsthd mnaio", \
|
||||
" /vgpb xw.;' e")
|
||||
|
||||
#define ___RSTHD___ \
|
||||
LANG_MAP(_J, _C, _Y, _F, _K, _Z, _L, TL_COMM, _U, _Q, \
|
||||
_R, _S, _T, _H, _D, _M, _N, _A, _I, _O, \
|
||||
_/, _V, _G, _P, _B, _X, _W, TL_DOT, TL_SCLN, TL_QUOT)
|
||||
|
||||
#define CARTE_HANDS_UP \
|
||||
carte_de_map(" fyou, kwclp", \
|
||||
" hiea. dtsrn", \
|
||||
" bj'z; vmgxq")
|
||||
|
||||
#define ___HANDS_UP___ \
|
||||
LANG_MAP(_F, _Y, _O, _U, TL_COMM, _K, _W, _C, _L, _P, \
|
||||
_H, _I, _E, _A, TL_DOT , _D, _T, _S, _R, _N, \
|
||||
_B, _J, TL_QUOT, _Z, TL_SCLN, _V, _M, _G, _X, _Q)
|
||||
|
||||
#define CARTE_WHITE \
|
||||
carte_de_map(" vyd,' jmlu-", \
|
||||
" atheb csnoi", \
|
||||
" pkgwq xrf.z")
|
||||
|
||||
#define ___WHITE___ \
|
||||
LANG_MAP(_V, _Y, _D, TL_COMM, TL_QUOT, _J, _M, _L, _U, _MINS, \
|
||||
_A, _T, _H, _E, _B, _C, _S, _N, _O, _I, \
|
||||
_P, _K, _G, _W, _Q, _X, _R, _F, TL_DOT, _Z)
|
||||
|
||||
|
||||
#define CARTE_ISRT \
|
||||
carte_de_map(" yclmk zfu,'", \
|
||||
" isrtg pneao", \
|
||||
" qvwdj bh/.x")
|
||||
|
||||
#define ___ISRT___ \
|
||||
LANG_MAP(_Y, _C, _L, _M, _K, _Z, _F, _U, TL_COMM, TL_QUOT, \
|
||||
_I, _S, _R, _T, _G, _P, _N, _E, _A, _O, \
|
||||
_Q, _V, _W, _D, _J, _B, _H, TL_SLSH, TL_DOT, _X)
|
||||
|
||||
#define CARTE_SOUL \
|
||||
carte_de_map(" qwldp kmuy;", \
|
||||
" srtg fneio", \
|
||||
" zxcvj bh,./")
|
||||
|
||||
#define ___SOUL___ \
|
||||
LANG_MAP(_Q, _W, _L, _D, _P, _K, _M, _U, _Y, TL_SCLN, \
|
||||
_A, _S, _R, _T, _G, _F, _N, _E, _I, _O, \
|
||||
_Z, _X, _C, _V, _J, _B, _H, TL_COMM, TL_DOT, TL_SLSH)
|
||||
|
||||
#define CARTE_NIRO \
|
||||
carte_de_map(" qwudp jfyl;", \
|
||||
" asetg hniro", \
|
||||
" zxcvb km,./")
|
||||
|
||||
#define ___NIRO___ \
|
||||
LANG_MAP(_Q, _W, _U, _D, _P, _J, _F, _Y, _L, TL_SCLN, \
|
||||
_A, _S, _E, _T, _G, _H, _N, _I, _R, _O, \
|
||||
_Z, _X, _C, _V, _B, _K, _M, TL_COMM, TL_DOT, TL_SLSH)
|
||||
|
||||
#define CARTE_ASSET \
|
||||
carte_de_map(" qwjfg ypul;", \
|
||||
" asetd hnior", \
|
||||
" zxcvb km,./")
|
||||
|
||||
#define ___Asset___ \
|
||||
LANG_MAP(_Q, _W, _J, _F, _G, _Y, _P, _U, _L, TL_SCLN, \
|
||||
_A, _S, _E, _T, _D, _H, _N, _I, _O, _R, \
|
||||
_Z, _X, _C, _V, _B, _K, _M, TL_COMM, TL_DOT, TL_SLSH)
|
||||
|
||||
#define CARTE_WHORF \
|
||||
carte_de_map("flhdm vwou,", \
|
||||
"srntk gyaei", \
|
||||
"xjbzq pc';. ")
|
||||
|
||||
#define ___WHORF___ \
|
||||
LANG_MAP(_F, _L, _H, _D, _M, _V, _W, _O, _U, TL_COMM, \
|
||||
_S, _R, _N, _T, _K, _G, _Y, _A, _E, _I, \
|
||||
_X, _J, _B, _Z, _Q, _P, _C, TL_QUOT, TL_SCLN, TL_DOT )
|
||||
|
||||
#define CARTE_WHORF6 \
|
||||
carte_de_map("vlhkj gwou.", \
|
||||
"srntk ydeai", \
|
||||
"xqbfz pc',; ")
|
||||
|
||||
#define ___WHORF6___ \
|
||||
LANG_MAP(_V, _L, _H, _D, _M, _G, _W, _O, _U, TL_DOT, \
|
||||
_S, _R, _N, _T, _K, _Y, _D, _E, _A, _I, \
|
||||
_X, _Q, _B, _F, _Z, _P, _C, TL_QUOT, TL_COMM, TL_SCLN )
|
||||
|
||||
/* rsht/iena */
|
||||
/* jfldv @uopq */
|
||||
/* zrshtg .iena: */
|
||||
/* xcmwk /y,b? */
|
||||
|
||||
// pine
|
||||
/* y l r d w j m o u , */
|
||||
/* c s n t g p h a e i */
|
||||
/* x z q v k b f ' / . */
|
58
users/ericgebhart/base_layers/base_layers.h
Normal file
58
users/ericgebhart/base_layers/base_layers.h
Normal file
@ -0,0 +1,58 @@
|
||||
#pragma once
|
||||
/*
|
||||
Copyright 2018-2022 Eric Gebhart <e.a.gebhart@gmail.com>
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 2 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#include "keycodes.h"
|
||||
#include "lang_map.h"
|
||||
#include "oled_stuff.h"
|
||||
|
||||
|
||||
// an empty template.
|
||||
|
||||
/* #define CARTE_EMPTY \ */
|
||||
/* carte_de_map(" ", \ */
|
||||
/* " ", \ */
|
||||
/* " ") */
|
||||
/* */
|
||||
/* #define ___EMPTY___ \ */
|
||||
/* LANG_MAP(_, _, _, _, _, _, _, _, _, _, \ */
|
||||
/* _, _, _, _, _, _, _, _, _, _, \ */
|
||||
/* _, _, _, _, _, _, _, _, _, _) */
|
||||
|
||||
|
||||
// dvorak, capewell-dvorak, ahei, and boo.
|
||||
#include "dvorak.h"
|
||||
//qwerty, workman, norman,
|
||||
#include "qwerty.h"
|
||||
// Colemak, halmak, minimak, etc.
|
||||
#include "maks.h"
|
||||
// eucalyn, maltron
|
||||
#include "alt.h"
|
||||
// mtgap, ctgap, apt
|
||||
#include "gap.h"
|
||||
// some hands down.
|
||||
#include "hands_down.h"
|
||||
// some beakls.
|
||||
#include "beakl.h"
|
||||
// bepo, optimot, beakl19bis, godox-fr?.
|
||||
#include "bepo.h"
|
||||
// some carpalxs.
|
||||
#include "carpalx.h"
|
||||
// The symbol, number function rows for all the above.
|
||||
#include "toprows.h"
|
||||
// some layers with accents and dead keys.
|
||||
#include "accents.h"
|
158
users/ericgebhart/base_layers/beakl.h
Normal file
158
users/ericgebhart/base_layers/beakl.h
Normal file
@ -0,0 +1,158 @@
|
||||
#pragma once
|
||||
/*
|
||||
Copyright 2018-2022 Eric Gebhart <e.a.gebhart@gmail.com>
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 2 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
// beakl, balanced effort key layout.
|
||||
// Beakl 15 and 19 are somewhat more related.
|
||||
// Beakl-wi is the latest. It feels a little bit more like a system.
|
||||
|
||||
|
||||
// Remember the - and ; outside pinky keys.
|
||||
// Or use the 6 size.
|
||||
// Both are on the symbol layer too. So you
|
||||
// wont lose them at least.
|
||||
// KC_BK_COMM, KC_BK_QUOT, KC_BK_DOT - Beakl->Qwerty
|
||||
// BP_BK_COMM, BP_BK_QUOT, BP_BK_DOT - Beakl->Bepo
|
||||
// take care of the different shifted chars.
|
||||
|
||||
|
||||
/* BEAKL 27 (main layer): */
|
||||
/* // altered shifted pairs: dot = .` comma = ,? dquot = !" */
|
||||
/* Alt target is BK2 */
|
||||
|
||||
/* 32104 76598 */
|
||||
/* qhoux gcmrv */
|
||||
/* yiea. dstnb */
|
||||
/* j",k' wflpz */
|
||||
|
||||
/* BEAKL 27 (shift layer): */
|
||||
/* !@$#% ^(*)& */
|
||||
/* QHOUX GCMRV */
|
||||
/* YIEA` DSTNB */
|
||||
/* J!?K' WFLPZ */
|
||||
|
||||
|
||||
#define CARTE_BEAKL27 \
|
||||
carte_de_map(" qhoux gcmrz ", \
|
||||
" yiea. dstnb ", \
|
||||
" j\",k' wflpv ")
|
||||
|
||||
// Alt target is BK
|
||||
#define ___BEAKL27___ \
|
||||
LANG_MAP(_Q, _H, _O, _U, _X, _G, _C, _M, _R, _Z, \
|
||||
_Y, _I, _E, _A, TL_DOT, _D, _S, _T, _N, _B, \
|
||||
_J, TL_EXLM, TL_COMM, _K, TL_QUOT, _W, _F, _L, _P, _V)
|
||||
|
||||
/* BEAKL 15 (main layer): */
|
||||
// altered shifted pairs: quot = '` comma = ,! dot = .@
|
||||
/* 40123 76598 */
|
||||
#define CARTE_BEAKL15 \
|
||||
carte_de_map(" qhoux gcrfz ", \
|
||||
" yiea. dstnb ", \
|
||||
" j/,k' wmlpv ")
|
||||
|
||||
// Alt target is BK
|
||||
#define ___BEAKL15___ \
|
||||
LANG_MAP(_Q, _H, _O, _U, _X, _G, _C, _R, _F, _Z, \
|
||||
_Y, _I, _E, _A, TL_DOT, _D, _S, _T, _N, _B, \
|
||||
_J, _SLSH, TL_COMM, _K, TL_QUOT, _W, _M, _L, _P, _V)
|
||||
|
||||
/* BEAKL 19 */
|
||||
// Beakl 19. scores better than 15, better in french also.
|
||||
// Both are lots better than dvorak or bepo.
|
||||
|
||||
/* same symbols and keypad as 15 */
|
||||
/* number row is different */
|
||||
/* 32104 76598 */
|
||||
|
||||
// Alt target is BK
|
||||
#define CARTE_BEAKL19 \
|
||||
carte_de_map(" q.ouj wdnm, ", \
|
||||
" haeik gsrtp ", \
|
||||
" z'/yx bclfv ")
|
||||
|
||||
#define ___BEAKL19___ \
|
||||
LANG_MAP(_Q, _DOT, _O, _U, _J, _W, _D, _N, _M, TL_COMM, \
|
||||
_H, _A, _E, _I, _K, _G, _S, _R, _T, _P, \
|
||||
_Z, _QUOT, _SLSH, _Y, _X, _B, _C, _L, _F, _V)
|
||||
|
||||
//BEAKL 19bis - original.
|
||||
// the é and è were simply added for analysis not real use.
|
||||
// even so, this layout scores well for french, better than
|
||||
// bepo and mtgap
|
||||
/* qyouz wdnck */
|
||||
/* -hiea, gtrsp; */
|
||||
/* èj'é.x vmlfb */
|
||||
|
||||
// A 3x12
|
||||
//BEAKL 19bis mod z.
|
||||
// French optimised with some english.
|
||||
// This version rearranges things a little based on fequency.
|
||||
// Since it needs 3x12, I filled in the corners and removed ;.
|
||||
// Leaving y where it is. the o and the e might cause sfbs.
|
||||
// Put é on a different finger from e.
|
||||
// swap z, e's, add à, ^, and ê, swap ; for -.
|
||||
// it might be beneficial to swap w and à, as à is much more frequent than w
|
||||
#define CARTE_BEAKL19bis \
|
||||
carte_de_map(" àqyoué wdnck^ ", \
|
||||
" ;hiea, gtrsp- ", \
|
||||
" zj'è.x vmlfbê ")
|
||||
|
||||
#define ___BEAKL19bis_3x12___ \
|
||||
LANG_MAP6( \
|
||||
_AGRV, _Q, _Y, _O, _U, _EACU, _W, _D, _N, _C, _K, _DCIR, \
|
||||
_SCLN, _H, _I, _E, _A, _COMM, _G, _T, _R, _S, _P, _MINS, \
|
||||
_Z, _J, _QUOT, _EGRV, _DOT, _X, _V, _M, _L, _F, _B, _ECIR)
|
||||
|
||||
|
||||
// Beakl Wi. This is the most current beakl this size. 18/01/2022.
|
||||
// Nothing on the 6th outer columns but layer toggle buttons. All 6.
|
||||
// altered shifted pairs: dot = .` comma = ,~ colon = :;
|
||||
// i is on the left thumb.
|
||||
/* ;you- ctrsv */
|
||||
/* qheaw gdnmz */
|
||||
/* j,.k' bplfx */
|
||||
/* i */
|
||||
|
||||
#define CARTE_BEAKLWI \
|
||||
carte_de_map(" ;you- ctrsv ", \
|
||||
" qheaw gdnmz ", \
|
||||
" j,.k' bplfx i")
|
||||
|
||||
#define ___BEAKLWI___ \
|
||||
LANG_MAP(TL_COLN, _Y, _O, _U, _MINS, _C, _T, _R, _S, _V, \
|
||||
_Q, _H, _E, _A, _W, _G, _D, _N, _M, _Z, \
|
||||
_J, TL_COMM, TL_DOT, _K, _QUOT, _B, _P, _L, _F, _X)
|
||||
|
||||
// Thumbs.
|
||||
#define ___BEAKLWI_CRKBD_THUMBS___ LT_ESC, LT_I, LT_TAB, LT_ENT, LT_SPC, LT_BSPC
|
||||
|
||||
// My version, loses KC_mins, because it's easier on my symbol layer.
|
||||
// put I in it's dvorak spot instead of thumbs, move W up to make room for I.
|
||||
// I'd rather have w and i on different fingers. One domino...
|
||||
|
||||
// beakl-wi - mod iw-
|
||||
|
||||
#define CARTE_BEAKLWIa \
|
||||
carte_de_map(" ;youw ctrsv ", \
|
||||
" qheai gdnmz ", \
|
||||
" j,.k' bplfx ")
|
||||
|
||||
// Alt target is BKW
|
||||
#define ___BEAKLWIa___ \
|
||||
LANG_MAP(TL_COLN, _Y, _O, _U, _W, _C, _T, _R, _S, _V, \
|
||||
_Q, _H, _E, _A, _I, _G, _D, _N, _M, _Z, \
|
||||
_J, TL_COMM, TL_DOT, _K, _QUOT, _B, _P, _L, _F, _X)
|
114
users/ericgebhart/base_layers/bepo.h
Normal file
114
users/ericgebhart/base_layers/bepo.h
Normal file
@ -0,0 +1,114 @@
|
||||
#pragma once
|
||||
/*
|
||||
Copyright 2018-2022 Eric Gebhart <e.a.gebhart@gmail.com>
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 2 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
// Maps based on BEPO Mostly 3x12
|
||||
|
||||
// BEAKL 19bis - English with French optimisations.
|
||||
// Least used letters in french xzykw QJÀ are fairly high.
|
||||
// XZ are good choices for pushing out, from english and french,
|
||||
// or using chords in both languages.
|
||||
|
||||
// Note: The percentages came from different sources so do not
|
||||
// match between languages.
|
||||
// French
|
||||
/* Q 0.89 % */
|
||||
/* J 0.71 % */
|
||||
/* À 0.54 % */
|
||||
/*-------------*/
|
||||
/* X 0.42 % */
|
||||
/* È 0.35 % */
|
||||
/* Ê 0.24 % */
|
||||
/* Z 0.21 % */
|
||||
/* Y 0.19 % */
|
||||
/* K 0.16 % */
|
||||
/* Ô 0.07 % */
|
||||
/* Û 0.05 % */
|
||||
/* W 0.04 % */
|
||||
|
||||
/* Least used letters in english. */
|
||||
/* X 0.2902% 1.48 */
|
||||
/* Z 0.2722% 1.39 */
|
||||
/* J 0.1965% 1.00 */
|
||||
/* Q 0.1962% (1) */
|
||||
|
||||
|
||||
// OPtimot by @Pyjam.
|
||||
/* àjoéb fdl’qxz */
|
||||
/* aieu, ptsrn^ç */
|
||||
/* êkyè.w gcmhvz */
|
||||
|
||||
// -- rearranged z, and ç to get 3x12
|
||||
#define CARTE_OPTIMOT \
|
||||
carte_de_map(" çàjoéb fdl’qx ", \
|
||||
" aieu, ptsrn^ ", \
|
||||
" êkyè.w gcmhvz ")
|
||||
|
||||
#define ___OPTIMOT_3x12___ \
|
||||
LANG_MAP6( \
|
||||
_CCED, _AGRV, _J, _O, _EACU, _B, _F, _D, _L, _QUOT, _Q, _X, \
|
||||
_TAB, _A, _I, _E, _U, _COMM, _P, _T, _S, _R, _N, _DCIR, \
|
||||
_ECIR, _K, _Y, _EGRV, _DOT, _W, _G, _C, _M, _H, _V, _Z)
|
||||
|
||||
// no z or x. combos exist for them.
|
||||
#define CARTE_OPTIMOT_COMPACT \
|
||||
carte_de_map(" àjoéb fdl’q ", \
|
||||
" aieu, ptsrn ", \
|
||||
" kyè.w gcmhv ")
|
||||
|
||||
#define ___OPTIMOT_3x10___ \
|
||||
LANG_MAP6( \
|
||||
_AGRV, _J, _O, _EACU, _B, _F, _D, _L, _QUOT, _Q, \
|
||||
_A, _I, _E, _U, _COMM, _P, _T, _S, _R, _N, \
|
||||
_K, _Y, _EGRV, _DOT, _W, _G, _C, _M, _H, _V,)
|
||||
|
||||
// Maybe Use this for C
|
||||
//BP_C_CCED = MT(BP_CCED, BP_C)
|
||||
|
||||
// BEPO
|
||||
|
||||
// No quot, à or ç
|
||||
/* bépoè vdljz */
|
||||
/* auie, ctsrn */
|
||||
/* myx.k qghfw */
|
||||
#define CARTE_BEPOc \
|
||||
carte_de_map(" bépoè vdljz", \
|
||||
" auie, ctsrn", \
|
||||
" myx.k qghfw")
|
||||
|
||||
#define ___BEPOc_3x10___ \
|
||||
LANG_MAP( \
|
||||
_B, _EACU, _P, _O, _EGRV, _V, _D, _L, _J, _Z, \
|
||||
_A, _U, _I, _E, _COMM, _C, _T, _S, _R, _N, \
|
||||
_M, _Y, _X, _DOT, _K, _Q, _G, _H, _F, _W)
|
||||
|
||||
|
||||
#define CARTE_BEPO \
|
||||
carte_de_map(" çbépoè ^vdljz ", \
|
||||
" auie, ctsrnm ", \
|
||||
" êàyx.k ’qghfw ")
|
||||
|
||||
#define ___BEPO_3x12___ \
|
||||
LANG_MAP6(_CCED, _B, _EACU, _P, _O, _EGRV, _DCIR, _V, _D, _L, _J, _Z, \
|
||||
_TAB, _A, _U, _I, _E, _COMM, _C, _T, _S, _R, _N, _M, \
|
||||
_ECIR, _AGRV, _Y, _X, _DOT, _K, _QUOT, _Q, _G, _H, _F, _W)
|
||||
|
||||
// dont like this one much.
|
||||
/* #define ___GODOX_3x12___ \ */
|
||||
/* LANG_MAP6(___, _AGRV, _B, _EACU, _dot, _mins, _DCIR, _V, _L, _M, _X, _CCED, \ */
|
||||
/* ___, _O, _U, _I, _A, _J, _G, _T, _S, _N, _R, _F, \ */
|
||||
/* ___, _Q, _Y, _EGRV, _P, _K, _W, _D, _UP, _H, _C, _Z) */
|
||||
/* // E goes on left thumb. */
|
46
users/ericgebhart/base_layers/carpalx.h
Normal file
46
users/ericgebhart/base_layers/carpalx.h
Normal file
@ -0,0 +1,46 @@
|
||||
#pragma once
|
||||
/*
|
||||
Copyright 2018-2022 Eric Gebhart <e.a.gebhart@gmail.com>
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 2 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
#define CARTE_CARPALX_QFMLWY \
|
||||
carte_de_map(" qfmlw yuobj", \
|
||||
" dstnr iaeh;", \
|
||||
" zvgcx pk,./")
|
||||
|
||||
#define ___CARPALX_QFMLWY___ \
|
||||
LANG_MAP(_Q, _F, _M, _L, _W, _Y, _U, _O, _B, _J, \
|
||||
_D, _S, _T, _N, _R, _I, _A, _E, _H, TL_SCLN, \
|
||||
_Z, _V, _G, _C, _X, _P, _K, TL_COMM, TL_DOT, TL_SLSH)
|
||||
|
||||
#define CARTE_CARPALX_QFMLWB \
|
||||
carte_de_map(" qgmlw byuv;", \
|
||||
" dstnr iaeoh", \
|
||||
" zxcfj kp,./")
|
||||
|
||||
#define ___CARPALX_QGMLWB___ \
|
||||
LANG_MAP(_Q, _G, _M, _L, _W, _B, _Y, _U, _V, TL_SCLN, \
|
||||
_D, _S, _T, _N, _R, _I, _A, _E, _O, _H, \
|
||||
_Z, _X, _C, _F, _J, _K, _P, TL_COMM, TL_DOT, TL_SLSH)
|
||||
|
||||
#define CARTE_CARPALX_QGMLWY \
|
||||
carte_de_map(" qgmlw yfub;", \
|
||||
" dstnr iaeoh", \
|
||||
" zxcvj kp,./")
|
||||
|
||||
#define ___CARPALX_QGMLWY___ \
|
||||
LANG_MAP(_Q, _G, _M, _L, _W, _Y, _F, _U, _B, TL_SCLN, \
|
||||
_D, _S, _T, _N, _R, _I, _A, _E, _O, _H, \
|
||||
_Z, _X, _C, _V, _J, _K, _P, TL_COMM, TL_DOT, TL_SLSH)
|
73
users/ericgebhart/base_layers/dvorak.h
Normal file
73
users/ericgebhart/base_layers/dvorak.h
Normal file
@ -0,0 +1,73 @@
|
||||
#pragma once
|
||||
/*
|
||||
Copyright 2018-2022 Eric Gebhart <e.a.gebhart@gmail.com>
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 2 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#define CARTE_DVORAK \
|
||||
carte_de_map(" ',.py fgcrl ", \
|
||||
" aoeui dhtns ", \
|
||||
" ;qjkx bmwvz ")
|
||||
|
||||
#define ___DVORAK___ \
|
||||
LANG_MAP(TL_QUOT, TL_COMM, TL_DOT, _P, _Y, _F, _G, _C, _R, _L, \
|
||||
_A, _O, _E, _U, _I, _D, _H, _T, _N, _S, \
|
||||
TL_SCLN, _Q, _J, _K, _X, _B, _M, _W, _V, _Z)
|
||||
|
||||
#define CARTE_DVORAK_RLC_IU \
|
||||
carte_de_map(" ',.py fgrlc ", \
|
||||
" aoeiu dhtns ", \
|
||||
" ;qjkx bmwvz ")
|
||||
|
||||
#define ___DVORAK_RLC_IU___ \
|
||||
LANG_MAP(TL_QUOT, TL_COMM, TL_DOT, _P, _Y, _F, _G, _R, _L, _C, \
|
||||
_A, _O, _E, _I, _U, _D, _H, _T, _N, _S, \
|
||||
TL_SCLN, _Q, _J, _K, _X, _B, _M, _W, _V, _Z)
|
||||
|
||||
#define CARTE_BOO \
|
||||
carte_de_map(" ,.ucv qfdly", \
|
||||
" aoesg bntri", \
|
||||
" ;x'wz phmkj")
|
||||
|
||||
#define ___BOO___ \
|
||||
LANG_MAP( TL_COMM, TL_DOT, _U, _C, _V, _Q, _F, _D, _L, _Y, \
|
||||
_A, _O, _E, _S, _G, _B, _N, _T, _R, _I, \
|
||||
TL_SCLN, _X, TL_QUOT, _W, _Z, _P, _H, _M, _K, _J)
|
||||
|
||||
#define CARTE_CAPEWELL_DVORAK \
|
||||
carte_de_map( " ',.py qfgrk", \
|
||||
" oaeiu dhtns", \
|
||||
" zxcvj lmwb;")
|
||||
|
||||
#define ___CAPEWELL_DVORAK___ \
|
||||
LANG_MAP(TL_QUOT, TL_COMM, TL_DOT, _P, _Y, _Q, _F, _G, _R, _K, \
|
||||
_O, _A, _E, _I, _U, _D, _H, _T, _N, _S, \
|
||||
_Z, _X, _C, _V, _J, _L, _M, _W, _B, TL_SCLN)
|
||||
|
||||
//ahei - derived from dvorak.
|
||||
// x moved to left side. j on pinky.
|
||||
/*;pouyq gdlm/= */
|
||||
/* ahei, fstnr- */
|
||||
/* j'k.x bcwvz */
|
||||
|
||||
#define CARTE_AHEI \
|
||||
carte_de_map("pouyq gdlm/", \
|
||||
"ahei, fstnr", \
|
||||
"j'k.x bcwvz")
|
||||
|
||||
#define ___AHEI___ \
|
||||
LANG_MAP(_P, _O, _U, _Y, _Q, _G, _D, _L, _M, TL_SLSH, \
|
||||
_A, _H, _E, _I, TL_COMM, _F, _S, _T, _N, _R, \
|
||||
_J, TL_QUOT, _K, TL_DOT, _X, _B, _C, _W, _V, _Z)
|
67
users/ericgebhart/base_layers/gap.h
Normal file
67
users/ericgebhart/base_layers/gap.h
Normal file
@ -0,0 +1,67 @@
|
||||
#pragma once
|
||||
/*
|
||||
Copyright 2018-2022 Eric Gebhart <e.a.gebhart@gmail.com>
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 2 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
// an alternate I found.
|
||||
/* Reference: MTGAP */
|
||||
/* y p o u - | b d l c k j */
|
||||
/* i n e a , | m h t s r v */
|
||||
/* ( " ' . _ | ) f w g x */
|
||||
/* z */
|
||||
|
||||
#define CARTE_MTGAP \
|
||||
carte_de_map(" ypouj kdlcw", \
|
||||
" inea, mhtsr", \
|
||||
" qz/.; bfgvx")
|
||||
|
||||
#define ___MTGAP___ \
|
||||
LANG_MAP(_Y, _P, _O, _U, _J, _K, _D, _L, _C, _W, \
|
||||
_I, _N, _E, _A, TL_COMM, _M, _H, _T, _S, _R, \
|
||||
_Q, _Z, TL_SLSH, TL_DOT, TL_SCLN, _B, _F, _G, _V, _X)
|
||||
|
||||
/* //APT v3*/
|
||||
/* https://github.com/Apsu/APT */
|
||||
#define CARTE_APT \
|
||||
carte_de_map(" wgdfb qluoy", \
|
||||
" rsthk jneai; ", \
|
||||
" xcmpv z,.'/")
|
||||
|
||||
#define ___APT___ \
|
||||
LANG_MAP(_W, _G, _D, _F, _B, _Q, _L, _U, _O, _Y, \
|
||||
_R, _S, _T, _H, _K, _J, _N, _E, _A, _I, TL_SCLN, \
|
||||
_X, _C, _M, _P, _V, _Z, TL_COMM, TL_DOT, TL_QUOT, TL_SLSH)
|
||||
|
||||
|
||||
#define CARTE_CTGAP \
|
||||
carte_de_map(" vplcf kuoyj", \
|
||||
" rntsd 'aeih", \
|
||||
" zbmgw x,.;q")
|
||||
|
||||
#define ___CTGAP___ \
|
||||
LANG_MAP(_V, _P, _L, _C, _F, _K, _U, _O, _Y, _J, \
|
||||
_R, _N, _T, _S, _D, TL_QUOT, _A, _E, _I, _H, \
|
||||
_Z, _B, _M, _G, _W, _X, TL_COMM, TL_DOT, TL_SCLN, _Q)
|
||||
|
||||
#define CARTE_CANARY \
|
||||
carte_de_map( " wlypb zfou'", \
|
||||
" crstg mneia", \
|
||||
" qjvd kxh/,.")
|
||||
|
||||
#define ___CANARY___ \
|
||||
LANG_MAP(_W, _L, _Y, _P, _B, _Z, _F, _O, _U, TL_QUOT, \
|
||||
_C, _R, _S, _T, _G, _M, _N, _E, _I, _A, \
|
||||
_Q, _J, _V, _D, _K, _X, _H, TL_SLSH, TL_COMM, TL_DOT)
|
147
users/ericgebhart/base_layers/hands_down.h
Normal file
147
users/ericgebhart/base_layers/hands_down.h
Normal file
@ -0,0 +1,147 @@
|
||||
#pragma once
|
||||
/*
|
||||
Copyright 2018-2022 Eric Gebhart <e.a.gebhart@gmail.com>
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 2 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
// https://sites.google.com/alanreiser.com/handsdown/home
|
||||
|
||||
// The only 3x12 layout. The rest are 3x10.
|
||||
#define CARTE_HD_NEU \
|
||||
carte_de_map( " wfmpv /.q\"'z", \
|
||||
" rsntb ,aeihj", \
|
||||
" xcldg -uoykK")
|
||||
|
||||
#define ___HD_NEU___ \
|
||||
LANG_MAP(_SML_NAV, _W, _F, _M, _P, _V , TL_SLSH, TL_DOT, _Q, TL_DQUO, TL_QUOT, _Z, \
|
||||
_TAB, _R, _S, _N, _T, _B , TL_COMM, _A, _E, _I, _H, _J, \
|
||||
_OS_ACCENT, _X, _C, _L, _D, _G , TL_MINS, _U, _O, _Y, _K, _SML_KEYPAD)
|
||||
|
||||
|
||||
// modified to fit 3x10.
|
||||
#define CARTE_HD_NEU_NARROW \
|
||||
carte_de_map(" xcldb zuoyq", \
|
||||
" rsntg ,aeih", \
|
||||
" wfmpv ;./jk")
|
||||
|
||||
#define ___HD_NEU_NARROW___ \
|
||||
LANG_MAP(_X, _C, _L, _D, _B, _Z, _U, _O, _Y, _Q, \
|
||||
_R, _S, _N, _T, _G, TL_COMM, _A, _E, _I, _H, \
|
||||
_W, _F, _M, _P, _V, _SCLN, TL_DOT, TL_SLSH, _J, _K)
|
||||
|
||||
|
||||
#define CARTE_HD_REF \
|
||||
carte_de_map(" qchpv kyoj/", \
|
||||
" rsntg wueia", \
|
||||
" xmldb zf',.")
|
||||
|
||||
#define ___HD_REF___ \
|
||||
LANG_MAP(_Q, _C, _H, _P, _V, _K, _Y, _O, _J, TL_SLSH, \
|
||||
_R, _S, _N, _T, _G, _W, _U, _E, _I, _A, \
|
||||
_X, _M, _L, _D, _B, _Z, _F, TL_QUOT, TL_COMM, TL_DOT )
|
||||
|
||||
|
||||
// All of these have a consonant or vowel on the thumb keys.
|
||||
|
||||
/* alt shift keys "? '! dash and elan */
|
||||
/* (< {[ - elan */
|
||||
/* dash has thumbs of ,; and .: */
|
||||
/* dash and the rest get these too. */
|
||||
/* alt shifts ;: .& /\* '? "! ,| -+ */
|
||||
/* COMBOS - z = jg, z=vg, q=uk, q=mp. */
|
||||
|
||||
|
||||
// no z or q, use combos.
|
||||
#define CARTE_HD_TITANIUM \
|
||||
carte_de_map(" jgmpv ;./\"' ", \
|
||||
" csntw ,aeih ", \
|
||||
" xfldb -uoyk r")
|
||||
|
||||
#define ___HD_TITANIUM___ \
|
||||
LANG_MAP(_J, _G, _M, _P, _V, TL_SCLN, TL_DOT, TL_SLSH, TL_DQUO, TL_QUOT, \
|
||||
_C, _S, _N, _T, _W , TL_COMM, _A, _E, _I, _H, \
|
||||
_X, _F, _L, _D, _B , TL_MINS, _U, _O, _Y, _K)
|
||||
|
||||
|
||||
#define CARTE_HD_GOLD \
|
||||
carte_de_map(" jgmpv ;./\"' ", \
|
||||
" rsndb ,aeih ", \
|
||||
" xflcw -uoyk t")
|
||||
|
||||
#define ___HD_GOLD___ \
|
||||
LANG_MAP(_J, _G, _M, _P, _V, TL_SCLN, TL_DOT, TL_SLSH, TL_DQUO, TL_QUOT, \
|
||||
_R, _S, _N, _D, _B , TL_COMM, _A, _E, _I, _H, \
|
||||
_X, _F, _L, _C, _W , TL_MINS, _U, _O, _Y, _K)
|
||||
/* t, ␣ */
|
||||
|
||||
/* jz pq alt shifts ;: .& /\* '? "! ,| -+ */
|
||||
|
||||
#define CARTE_HD_PLATINUM \
|
||||
carte_de_map( "jghpv ;./'\"", \
|
||||
"rsntb ,aeic", \
|
||||
"xfmdk -uowy l")
|
||||
/* l ␣ */
|
||||
|
||||
#define ___HD_PLATINUM___ \
|
||||
LANG_MAP(_J, _G, _H, _P, _V, TL_SCLN, TL_DOT, TL_SLSH, TL_QUOT, TL_DQUO, \
|
||||
_R, _S, _N, _T, _B, TL_COMM, _A, _E, _I, _C, \
|
||||
_X, _F, _M, _D, _K, TL_MINS, _U, _O, _W, _Y)
|
||||
|
||||
#define CARTE_HD_SILVER \
|
||||
carte_de_map("jgmpv ;./'\"", \
|
||||
"rshtb ,aeic", \
|
||||
"xfldk -uowy n")
|
||||
/* n ␣ */
|
||||
|
||||
#define ___HD_SILVER___ \
|
||||
LANG_MAP(_J, _G, _M, _P, _V, TL_SCLN, TL_DOT, TL_SLSH, TL_QUOT, TL_DQUO, \
|
||||
_R, _S, _H, _T, _B, TL_COMM, _A, _E, _I, _C, \
|
||||
_X, _F, _L, _D, _K, TL_MINS, _U, _O, _W, _Y)
|
||||
|
||||
#define CARTE_HD_BRONZE \
|
||||
carte_de_map("jgmpv ;./'\"", \
|
||||
"rsntb ,aeic", \
|
||||
"xfldk -uowy h")
|
||||
/* h ␣ */
|
||||
|
||||
#define ___HD_BRONZE___ \
|
||||
LANG_MAP(_J, _G , _M, _P, _V , TL_SCLN, TL_DOT, TL_SLSH , TL_QUOT, TL_DQUO, \
|
||||
_R, _S, _N, _T, _B , TL_COMM, _A, _E, _I, _C, \
|
||||
_X, _F, _L, _D, _K , TL_MINS, _U, _O, _W, _Y)
|
||||
|
||||
#define CARTE_HD_ELAN \
|
||||
carte_de_map("vghpk /({'\"", \
|
||||
"rsntf jaeci", \
|
||||
"xmldb -uowy")
|
||||
/* ,; .: ␣ ⏎ */
|
||||
|
||||
/* vz g h p kq /\* (< {[ '! "? */
|
||||
/* TL_COMM; TL_DOT: _␣ ⏎ */
|
||||
#define ___HD_ELAN___ \
|
||||
LANG_MAP(_V, _G, _H, _P, _K, TL_SLSH, TL_LPRN, TL_LCBR, TL_QUOT, TL_DQUO, \
|
||||
_R, _S, _N, _T, _F, _J, _A, _E, _C, _I, \
|
||||
_X, _M, _L, _D, _B, TL_MINS, _U, _O, _W, _Y)
|
||||
|
||||
|
||||
#define CARTE_HD_DASH \
|
||||
carte_de_map("jgmpv ;.'\"/", \
|
||||
"rsntb ,haoi", \
|
||||
"xcldw -fuky e")
|
||||
/* e ␣ */
|
||||
|
||||
#define ___HD_DASH___ \
|
||||
LANG_MAP(_J, _G, _M, _P, _V , TL_SCLN, TL_DOT, TL_QUOT, TL_DQUO, TL_SLSH, \
|
||||
_R, _S, _N, _T, _B , TL_COMM, _H, _A, _O, _I, \
|
||||
_X, _C, _L, _D, _W , TL_MINS, _F, _U, _K, _Y)
|
300
users/ericgebhart/base_layers/keymaps.txt
Normal file
300
users/ericgebhart/base_layers/keymaps.txt
Normal file
File diff suppressed because it is too large
Load Diff
61
users/ericgebhart/base_layers/maks.h
Normal file
61
users/ericgebhart/base_layers/maks.h
Normal file
@ -0,0 +1,61 @@
|
||||
#define CARTE_COLEMAK \
|
||||
carte_de_map(" qwfpg jluy;", \
|
||||
" arstd hneio", \
|
||||
" zxcvb km,./")
|
||||
|
||||
#define ___COLEMAK___ \
|
||||
LANG_MAP(_Q, _W, _F, _P, _G, _J, _L, _U, _Y, TL_SCLN, \
|
||||
_A, _R, _S, _T, _D, _H, _N, _E, _I, _O, \
|
||||
_Z, _X, _C, _V, _B, _K, _M, TL_COMM, TL_DOT, TL_SLSH)
|
||||
|
||||
|
||||
#define CARTE_COLEMAK_DH \
|
||||
carte_de_map(" qwfpb jluy;", \
|
||||
" arstg mneio", \
|
||||
" zxcdv kh,./")
|
||||
|
||||
#define ___COLEMAK_DH___ \
|
||||
LANG_MAP(_Q, _W, _F, _P, _B, _J, _L, _U, _Y, TL_SCLN, \
|
||||
_A, _R, _S, _T, _G, _M, _N, _E, _I, _O, \
|
||||
_Z, _X, _C, _D, _V, _K, _H, TL_COMM, TL_DOT, TL_SLSH)
|
||||
|
||||
#define CARTE_HALMAK \
|
||||
carte_de_map(" wlrbz ;qudj", \
|
||||
" shnt, .aeoi", \
|
||||
" fmvc/ gpxky")
|
||||
|
||||
#define ___HALMAK___ \
|
||||
LANG_MAP(_W, _L, _R, _B, _Z, TL_SCLN, _Q, _U, _D, _J, \
|
||||
_S, _H, _N, _T, TL_COMM, _DOT, _A, _E, _O, _I, \
|
||||
_F, _M, _V, _C, TL_SLSH, _G, _P, _X, _K, _Y)
|
||||
|
||||
#define CARTE_MINIMAK \
|
||||
carte_de_map(" qwdrk yuiop", \
|
||||
" astfg hjel;", \
|
||||
" zxcvb nm,./")
|
||||
|
||||
#define ___MINIMAK___ \
|
||||
LANG_MAP(_Q, _W, _D, _R, _K, _Y, _U, _I, _O, _P, \
|
||||
_A, _S, _T, _F, _G, _H, _J, _E, _L, TL_SCLN, \
|
||||
_Z, _X, _C, _V, _B, _N, _M, TL_COMM, TL_DOT, TL_SLSH)
|
||||
|
||||
#define CARTE_MINIMAK_8 \
|
||||
carte_de_map(" qwdrk yuilp", \
|
||||
" astfg hneo;", \
|
||||
" zxcvb jm,./")
|
||||
|
||||
#define ___MINIMAK_8___ \
|
||||
LANG_MAP(_Q, _W, _D, _R, _K, _Y, _U, _I, _L, _P, \
|
||||
_A, _S, _T, _F, _G, _H, _N, _E, _O, TL_SCLN, \
|
||||
_Z, _X, _C, _V, _B, _J, _M, TL_COMM, TL_DOT, TL_SLSH)
|
||||
|
||||
|
||||
#define CARTE_MINIMAK_12 \
|
||||
carte_de_map(" qwdfk yuil;", \
|
||||
" astrg hneop", \
|
||||
" zxcvb jm,./")
|
||||
|
||||
#define ___MINIMAK_12___ \
|
||||
LANG_MAP(_Q, _W, _D, _F, _K, _Y, _U, _I, _L, _SCLN, \
|
||||
_A, _S, _T, _R, _G, _H, _N, _E, _O, _P, \
|
||||
_Z, _X, _C, _V, _B, _J, _M, TL_COMM, TL_DOT, TL_SLSH)
|
69
users/ericgebhart/base_layers/qwerty.h
Normal file
69
users/ericgebhart/base_layers/qwerty.h
Normal file
@ -0,0 +1,69 @@
|
||||
#pragma once
|
||||
/*
|
||||
Copyright 2018-2022 Eric Gebhart <e.a.gebhart@gmail.com>
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 2 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
// Layer for combo reference. Make more than one by changing lang is.
|
||||
#define ___COMBO_REF___ \
|
||||
LANG_MAP(_1L1, _1L2, _1L3, _1L4, _1L5, _1R1, _1R2, _1R3, _1R4, _1R5, \
|
||||
_2L1, _2L2, _2L3, _2L4, _2L5, _2R1, _2R2, _2R3, _2R4, _2R5, \
|
||||
_3L1, _3L2, _3L3, _3L4, _3L5, _3R1, _3R2, _3R3, _3R4, _3R5)
|
||||
|
||||
|
||||
#define CARTE_QWERTY \
|
||||
carte_de_map(" qwert yuiop", \
|
||||
" asdfg hjkl;", \
|
||||
" zxcvb nm,./")
|
||||
|
||||
// Need TLKC around comm, dot, and quot, and scln
|
||||
// Qwerty based layers that I don't really use.
|
||||
#define ___QWERTY___ \
|
||||
LANG_MAP(_Q, _W, _E, _R, _T, _Y, _U, _I, _O, _P, \
|
||||
_A, _S, _D, _F, _G, _H, _J, _K, _L, TL_SCLN, \
|
||||
_Z, _X, _C, _V, _B, _N, _M, TL_COMM, TL_DOT, TL_SLSH)
|
||||
|
||||
#define CARTE_AZERTY \
|
||||
carte_de_map(" azert yuiop", \
|
||||
" qsdfg hjkl;", \
|
||||
" wxcvb nm,./")
|
||||
|
||||
// Need TLKC around comm, dot, and quot, and scln
|
||||
// Qwerty based layers that I don't really use.
|
||||
#define ___AZERTY___ \
|
||||
LANG_MAP(_A, _Z, _E, _R, _T, _Y, _U, _I, _O, _P, \
|
||||
_Q, _S, _D, _F, _G, _H, _J, _K, _L, TL_SCLN, \
|
||||
_W, _X, _C, _V, _B, _N, _M, TL_COMM, TL_DOT, TL_SLSH)
|
||||
|
||||
|
||||
|
||||
#define CARTE_WORKMAN \
|
||||
carte_de_map(" qdrwb jfup;", \
|
||||
" ashtg yneio", \
|
||||
" zxmcv kl,./")
|
||||
|
||||
#define ___WORKMAN___ \
|
||||
LANG_MAP(_Q, _D, _R, _W, _B, _J, _F, _U, _P, _SCLN, \
|
||||
_A, _S, _H, _T, _G, _Y, _N, _E, _O, _I, \
|
||||
_Z, _X, _M, _C, _V, _K, _L, TL_COMM, TL_DOT, TL_SLSH)
|
||||
|
||||
#define CARTE_NORMAN \
|
||||
carte_de_map(" qwdfk jurl;", \
|
||||
" asetg yniou", \
|
||||
" zxcvb pm,./")
|
||||
#define ___NORMAN___ \
|
||||
LANG_MAP(_Q, _W, _D, _F, _K, _J, _U, _R, _L, TL_SCLN, \
|
||||
_A, _S, _E, _T, _G, _Y, _N, _I, _O, _U, \
|
||||
_Z, _X, _C, _V, _B, _P, _M, TL_COMM, TL_DOT, TL_SLSH)
|
56
users/ericgebhart/base_layers/toprows.h
Normal file
56
users/ericgebhart/base_layers/toprows.h
Normal file
@ -0,0 +1,56 @@
|
||||
#pragma once
|
||||
/*
|
||||
Copyright 2018-2022 Eric Gebhart <e.a.gebhart@gmail.com>
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 2 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
/*******************************************************************/
|
||||
/** TOP ROWS Func,Symbols, Numbers you find there. **/
|
||||
/*******************************************************************/
|
||||
// ltkc language target keycode DV, BK, BKW, NONE
|
||||
// _1 = DV_1 or _1 = BP_DV_1 or KC_1
|
||||
#define ___10_NUMBERS___ \
|
||||
LANG_ROW(_1, _2, _3, _4, _5, _6, _7, _8, _9, _0)
|
||||
|
||||
/* 40123 76598 */
|
||||
#define ___10_NUMBERS_BEAKL15___ \
|
||||
LANG_ROW(_4, _0, _1, _2, _3, _7, _6, _5, _9, _8)
|
||||
|
||||
/* 32104 76598 */
|
||||
#define ___10_NUMBERS_BEAKL19___ \
|
||||
LANG_ROW(_3, _2, _1, _0, _4, _7, _6, _5, _9, _8)
|
||||
|
||||
// a top symbol row if someone wants it.
|
||||
#define ___10_SYMBOLS___ \
|
||||
LANG_ROW(_EXLM, _AT, _HASH, _DLR, _PERC, _CIRC, _AMPR, _ASTR, _LPRN, _RPRN)
|
||||
|
||||
// standard bepo top row
|
||||
#define ___10_SYMBOLS_BEPO___ \
|
||||
LANG_ROW(_DQUO, _LDAQ, _RDAQ, _LPRN, _RPRN, _AT, _PLUS, _MINS, _SLSH, _ASTR)
|
||||
|
||||
#define ___12_SYMBOLS_BEPO___ \
|
||||
LANG_ROW12(_DLR, _DQUO, _LDAQ, _RDAQ, _LPRN, _RPRN, \
|
||||
_AT, _PLUS, _MINS, _SLSH, _ASTR, _EQL)
|
||||
|
||||
// function key rows work for everyone.
|
||||
#define ___10_FUNCS___ \
|
||||
KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10
|
||||
|
||||
#define ___12_FUNCS___ ___10_FUNCS___, KC_F11, KC_F12
|
||||
|
||||
#define ___10_FUNCS_BEAKL15___ \
|
||||
KC_F4, KC_F10, KC_F1, KC_F2, KC_F3, \
|
||||
KC_F7, KC_F6, KC_F5, KC_F9, KC_F8
|
||||
|
||||
#define ___12_FUNCS_BEAKL15___ KC_F11, ___10_FUNCS_BEAKL15___, KC_F12
|
@ -1,81 +0,0 @@
|
||||
// Copyright 2021 Google LLC
|
||||
//
|
||||
// Licensed under the Apache License, Version 2.0 (the "License");
|
||||
// you may not use this file except in compliance with the License.
|
||||
// You may obtain a copy of the License at
|
||||
//
|
||||
// https://www.apache.org/licenses/LICENSE-2.0
|
||||
//
|
||||
// Unless required by applicable law or agreed to in writing, software
|
||||
// distributed under the License is distributed on an "AS IS" BASIS,
|
||||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
//
|
||||
//
|
||||
// For full documentation, see
|
||||
// https://getreuer.info/posts/keyboards/caps-word
|
||||
|
||||
#include "caps_word.h"
|
||||
|
||||
bool process_caps_word(uint16_t keycode, keyrecord_t* record) {
|
||||
static bool caps_word_enabled = false;
|
||||
static bool shifted = false;
|
||||
#ifndef NO_ACTION_ONESHOT
|
||||
const uint8_t mods = get_mods() | get_oneshot_mods();
|
||||
#else
|
||||
const uint8_t mods = get_mods();
|
||||
#endif // NO_ACTION_ONESHOT
|
||||
|
||||
if (!caps_word_enabled) {
|
||||
// Pressing both shift keys at the same time enables caps word.
|
||||
if ((mods & MOD_MASK_SHIFT) == MOD_MASK_SHIFT) {
|
||||
clear_mods();
|
||||
#ifndef NO_ACTION_ONESHOT
|
||||
clear_oneshot_mods();
|
||||
#endif // NO_ACTION_ONESHOT
|
||||
shifted = false;
|
||||
caps_word_enabled = true;
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
if (!record->event.pressed) { return true; }
|
||||
|
||||
if (!(mods & ~MOD_MASK_SHIFT)) {
|
||||
switch (keycode) {
|
||||
case QK_MOD_TAP ... QK_MOD_TAP_MAX:
|
||||
case QK_LAYER_TAP ... QK_LAYER_TAP_MAX:
|
||||
// Earlier return if this has not been considered tapped yet.
|
||||
if (record->tap.count == 0) { return true; }
|
||||
// Get the base tapping keycode of a mod- or layer-tap key.
|
||||
keycode &= 0xff;
|
||||
}
|
||||
|
||||
switch (keycode) {
|
||||
// Letter keys should be shifted.
|
||||
case KC_A ... KC_Z:
|
||||
if (!shifted) { register_code(KC_LSFT); }
|
||||
shifted = true;
|
||||
return true;
|
||||
|
||||
// Keycodes that continue caps word but shouldn't get shifted.
|
||||
case KC_1 ... KC_0:
|
||||
case KC_BSPC:
|
||||
case KC_MINS:
|
||||
case KC_UNDS:
|
||||
if (shifted) { unregister_code(KC_LSFT); }
|
||||
shifted = false;
|
||||
return true;
|
||||
|
||||
// Any other keycode disables caps word.
|
||||
}
|
||||
}
|
||||
|
||||
// Disable caps word.
|
||||
caps_word_enabled = false;
|
||||
if (shifted) { unregister_code(KC_LSFT); }
|
||||
shifted = false;
|
||||
return true;
|
||||
}
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user