keymap.c 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. /* Copyright 2018 Daniel Rose <droseger@protonmail.com>
  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. #include "pegasushoof.h"
  17. /* Allow shortcuts for combos like RALT(KC_RBRC) that don't take up more than 7 characters: */
  18. #define G(kc) RALT(KC_##kc)
  19. #define A(kc) LALT(KC_##kc)
  20. #define C(kc) LCTL(KC_##kc)
  21. #undef S /* Original shortcut (quantum_keycodes.h) takes full-sized keycodes: too long! */
  22. #define S(kc) LSFT(KC_##kc)
  23. #define CTALDEL LCTL(LALT(KC_DEL))
  24. enum layers {
  25. DEF,
  26. FUN,
  27. RES,
  28. };
  29. enum tap_dance {
  30. AF4,
  31. };
  32. const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
  33. /* Layer 0: default layer (ISO-DE)
  34. * .----. .-------------------. .-------------------. .-------------------. .--------------.
  35. * |Esc | |F1 |F2 |F3 |F4 | |F5 |F6 |F7 |F8 | |F9 |F10 |F11 |F12 | |PrSc|SLck|2Tp:|
  36. * | | | | | | | | | | | | | | | | | |SyRq| |A+F4|
  37. * '----' '-------------------' '-------------------' '-------------------' '--------------'
  38. * .------------------------------------------------------------------------. .--------------.
  39. * |° |! |" |§ |$ |% |& |/ |( |) |= |? |` |Backspa| |Ins |Home|PgUp|
  40. * |^ |1 |2 ²|3 ³|4 |5 |6 |7 {|8 [|9 ]|0 }|ß \|´ | | | | | |
  41. * |------------------------------------------------------------------------| |--------------|
  42. * |Tab |Q |W |E |R |T |Z |U |I |O |P |Ü |* | E | |Del |End |PgDn|
  43. * | | | | €| | | | | | | | |+ ~| n | | | | |
  44. * |------------------------------------------------------------------\ t | '--------------'
  45. * |Fn: |A |S |D |F |G |H |J |K |L |Ö |Ä |' | e |
  46. * |Layer 2| | | | | | | | | | | |# | r |
  47. * |------------------------------------------------------------------------| .----.
  48. * |Shift|> |Y |X |C |V |B |N |M |; |: |_ |Shift | |Up |
  49. * | |< ¦| | | | | | | µ|, |. |- | | | |
  50. * |------------------------------------------------------------------------| .--------------.
  51. * |Ctrl |Super|Alt | |AltGr|Alt |Fn: |Ctrl | |Left|Down|Righ|
  52. * | | | | | | |Lay 2| | | | | |
  53. * '------------------------------------------------------------------------' '--------------'
  54. * NUHS = true position of KC_NUHS
  55. */
  56. [DEF] = KEYMAP( \
  57. KC_ESC, 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_PSCR,KC_SLCK,TD(AF4), \
  58. KC_GRV, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS,KC_EQL, KC_BSPC, KC_INS, KC_HOME,KC_PGUP, \
  59. KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_LBRC,KC_RBRC,KC_NUHS, KC_DEL, KC_END, KC_PGDN, \
  60. MO(FUN),KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN,KC_QUOT,/*NUHS*/KC_ENT, \
  61. KC_LSFT,KC_NUBS,KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM,KC_DOT, KC_SLSH, KC_RSFT, KC_UP, \
  62. KC_LCTL,KC_LGUI,KC_LALT, KC_SPC, KC_RALT,KC_LALT,MO(FUN),KC_RCTL, KC_LEFT,KC_DOWN,KC_RGHT),
  63. /* Layer 1: function layer
  64. * .----. .-------------------. .-------------------. .-------------------. .--------------.
  65. * |Ctl+| |My |WWW:|Calc|Medi| |Mus:|Mus:|Mus:|Mus:| |Vol:|Vol:|Vol:|See:| | | |Paus|
  66. * |A+De| |Comp|Home| |Play| |Prev|Next|Paus|Stop| |Mute|Down|Up |[3] | | | |Brea|
  67. * '----' '-------------------' '-------------------' '-------------------' '--------------'
  68. * .------------------------------------------------------------------------. .--------------.
  69. * | | | | | | | | | | | | | | | | | |Mou:|
  70. * | | | | | | | |{ |[ |] |} |\ | | | | | |WhUp|
  71. * |------------------------------------------------------------------------| |--------------|
  72. * | | | | | | | | | | | | |~ | | | | |Mou:|
  73. * | | | | | | | | | | | | | | | | | |WhDn|
  74. * |------------------------------------------------------------------\ | '--------------'
  75. * |CapsLck|Mou:|Mou:| | | | | | | | | | | |
  76. * | |Fast|Slow| | | | | | | | | | | |
  77. * |------------------------------------------------------------------------| .----.
  78. * | | | | | | | | |µ | | | | | |Mou:|
  79. * | | | | | | | | | | | | | | |Up |
  80. * |------------------------------------------------------------------------| .--------------.
  81. * |Mous:|Mous:| | | |Super|App | | |Mou:|Mou:|Mou:|
  82. * |Bttn2|Bttn1| | | | | | | |Left|Down|Righ|
  83. * '------------------------------------------------------------------------' '--------------'
  84. *
  85. */
  86. [FUN] = KEYMAP( \
  87. CTALDEL, KC_MYCM,KC_WHOM,KC_CALC,KC_MSEL,KC_MPRV,KC_MNXT,KC_MPLY,KC_MSTP,KC_MUTE,KC_VOLD,KC_VOLU,MO(RES), _______,KC_SLCK,KC_PAUS, \
  88. _______,_______,_______,_______,_______,_______,_______,G(7), G(8), G(9), G(0), G(MINS),_______,_______, _______,_______,KC_WH_U, \
  89. _______,_______,_______,_______,_______,_______,_______,_______,_______,_______,_______,_______,G(RBRC),_______, _______,_______,KC_WH_D, \
  90. KC_CAPS,KC_ACL2,KC_ACL0,_______,_______,_______,_______,_______,_______,_______,_______,_______,/*NUHS*/_______, \
  91. _______,_______,_______,_______,_______,_______,_______,_______,G(M), _______,_______,_______, _______, KC_MS_U, \
  92. KC_BTN2,KC_BTN1,_______, _______, _______,KC_RGUI,KC_APP ,_______, KC_MS_L,KC_MS_D,KC_MS_R),
  93. /* Layer 3: Reset layer (prevents accidental resets) */
  94. [RES] = KEYMAP( \
  95. _______, _______,_______,_______,_______,_______,_______,_______,_______,_______,_______,_______,_______, _______,_______,_______, \
  96. _______,_______,_______,_______,_______,_______,_______,_______,_______,_______,_______,_______,_______,_______, _______,_______,_______, \
  97. _______,_______,_______,_______,RESET, _______,_______,_______,_______,_______,_______,_______,_______,_______, _______,_______,_______, \
  98. _______,_______,_______,_______,_______,_______,_______,_______,_______,_______,_______,_______,/*NUHS*/_______, \
  99. _______,_______,_______,_______,_______,_______,_______,_______,_______,_______,_______,_______, _______, _______, \
  100. _______,_______,_______, _______, _______,_______,_______,_______, _______,_______,_______),
  101. };
  102. qk_tap_dance_action_t tap_dance_actions[] = {
  103. /* Tap once: nothing. Tap twice: Alt+F4 */
  104. [AF4] = ACTION_TAP_DANCE_DOUBLE(XXXXXXX,A(F4)),
  105. };
  106. void led_set_user(uint8_t usb_led) {
  107. if (usb_led & (1 << USB_LED_CAPS_LOCK)) {
  108. ph_caps_led_on();
  109. } else {
  110. ph_caps_led_off();
  111. }
  112. if (usb_led & (1 << USB_LED_SCROLL_LOCK)) {
  113. ph_sclk_led_on();
  114. } else {
  115. ph_sclk_led_off();
  116. }
  117. }