Skip to content

Commit

Permalink
Added umlauts and pc sleep keys
Browse files Browse the repository at this point in the history
  • Loading branch information
Soryyyn committed Jul 12, 2023
1 parent b1d1aa8 commit bdcfbf9
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions keyboards/planck/rev7/keymaps/soryn/keymap.c
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ enum planck_keycodes { QWERTY = SAFE_RANGE, BACKLIT };
#define LOWER MO(_LOWER)
#define RAISE MO(_RAISE)

#define UML_AE RALT(KC_Q)
#define UML_OE RALT(KC_P)
#define UML_UE RALT(KC_Y)

/* clang-format off */
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {

Expand Down Expand Up @@ -56,15 +60,15 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
* |------+------+------+------+------+-------------+------+------+------+------+------|
* | | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 0 | |
* |------+------+------+------+------+------|------+------+------+------+------+------|
* | | | | | | | | | | | Vol+ | |
* | | Ä | Ö | Ü | | | | | | | Vol+ | |
* |------+------+------+------+------+------+------+------+------+------+------+------|
* | | | | Cut | | | | | Play | Vol- | Next |
* `-----------------------------------------------------------------------------------'
*/
[_RAISE] = LAYOUT_planck_grid(
KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12,
_______, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, _______,
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_VOLU, _______,
_______, UML_AE, UML_OE, UML_UE, _______, _______, _______, _______, _______, _______, KC_VOLU, _______,
_______, _______, _______, C(KC_X), _______, _______, _______, _______, _______, KC_MPLY, KC_VOLD, KC_MNXT
),

Expand All @@ -76,14 +80,14 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
* |------+------+------+------+------+------+------+------+------+------+------+------|
* | | | | | | | | | | | | |
* |------+------+------+------+------+------+------+------+------+------+------+------|
* | | | | | | | | | | | |
* | | | | | | | | | | |Sleep |
* `-----------------------------------------------------------------------------------'
*/
[_ADJUST] = LAYOUT_planck_grid(
QK_BOOT, DB_TOGG, _______, _______, _______, RGB_TOG, RGB_HUI, RGB_HUD, RGB_SAI, RGB_SAD, RGB_VAI, RGB_VAD,
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_SLEP
)

};
Expand Down

0 comments on commit bdcfbf9

Please sign in to comment.