[Keymap] Pvinis/update for iris (#5889)
* add default functions * some indenting * add ctl and alt * maybe?
This commit is contained in:
parent
a8af694d26
commit
1a28906a3d
5 changed files with 24 additions and 15 deletions
|
@ -2,6 +2,7 @@
|
|||
|
||||
#ifdef AUDIO_ENABLE
|
||||
// #define STARTUP_SONG SONG(SONIC_RING)
|
||||
// #define DAC_SAMPLE_MAX 65535U // maybe this works for volume?
|
||||
#endif
|
||||
|
||||
// allow rolling when keys have hold functionality
|
||||
|
|
|
@ -77,3 +77,13 @@ qk_tap_dance_action_t tap_dance_actions[] = {
|
|||
void keyboard_post_init_user(void) {
|
||||
keyboard_post_init_user_local();
|
||||
}
|
||||
|
||||
|
||||
// default functions
|
||||
__attribute__ ((weak))
|
||||
void keyboard_post_init_user_local(void) {}
|
||||
|
||||
__attribute__ ((weak))
|
||||
uint32_t layer_state_set_user_local(uint32_t state) {
|
||||
return state;
|
||||
}
|
||||
|
|
|
@ -78,8 +78,8 @@ enum {
|
|||
#define _________________QWERTY_R2_________________ KC_H , KC_J , KC_K , KC_L , KC_SCLN
|
||||
#define _________________QWERTY_R3_________________ KC_N , KC_M , KC_COMM, KC_DOT , KC_SLSH
|
||||
|
||||
#define _____________MOD_QWERTY_L2_________________ KC_A , SFT_T(KC_S), GUI_T(KC_D), KC_F , KC_G
|
||||
#define _____________MOD_QWERTY_R2_________________ KC_H , KC_J , GUI_T(KC_K), SFT_T(KC_L), KC_SCLN
|
||||
#define _____________MOD_QWERTY_L2_________________ CTL_T(KC_A), SFT_T(KC_S), GUI_T(KC_D), ALT_T(KC_F), KC_G
|
||||
#define _____________MOD_QWERTY_R2_________________ KC_H , ALT_T(KC_J), GUI_T(KC_K), SFT_T(KC_L), CTL_T(KC_SCLN)
|
||||
|
||||
// ,-----+-----+-----+-----+-----, ,-----+-----+-----+-----+-----,
|
||||
// | Q | G | M | L | W | | Y | F | I | O | P |
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue