You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

keymap_alaricljs.h 3.7KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. // hid_liber alaricljs
  2. // this was the standard layout when hid_liber was merged into tmk's firmware
  3. static const uint8_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
  4. /* Layer 0: Default ANSI
  5. *
  6. * ,---. ,---------------. ,---------------. ,---------------. ,-----------.
  7. * |Esc| |F1 |F2 |F3 |F4 | |F5 |F6 |F7 |F8 | |F9 |F10|F11|F12| |PrS|ScL|Pau|
  8. * `---' `---------------' `---------------' `---------------' `-----------'
  9. * ,-----------------------------------------------------------. ,-----------.
  10. * |~ | 1| 2| 3| 4| 5| 6| 7| 8| 9| 0| -| =|Backsp | |Ins|Hom|PgU|
  11. * |-----------------------------------------------------------| |-----------|
  12. * |Tab | Q| W| E| R| T| Y| U| I| O| P| [| ]| \| |Del|End|PgD|
  13. * |-----------------------------------------------------------| `-----------'
  14. * |FN1 | A| S| D| F| G| H| J| K| L| ;| '|Return |
  15. * |-----------------------------------------------------------| ,---.
  16. * |Shft|iso| Z| X| C| V| B| N| M| ,| .| /|Shift | |Up |
  17. * |-----------------------------------------------------------| ,-----------.
  18. * |Ctl|Gui|Alt| Space |Alt|Gui|App|Ctl| |Lef|Dow|Rig|
  19. * `-----------------------------------------------------------' `-----------'
  20. */
  21. KEYMAP(\
  22. ESC, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12, PSCR, SLCK, BRK, \
  23. GRV, 1, 2, 3, 4, 5, 6, 7, 8, 9, 0, MINS, EQL, BSPC, INS, HOME, PGUP, \
  24. TAB, Q, W, E, R, T, Y, U, I, O, P, LBRC, RBRC, BSLS, DEL, END, PGDN, \
  25. FN1, A, S, D, F, G, H, J, K, L, SCLN, QUOT, ENT, \
  26. LSFT, NUBS, Z, X, C, V, B, N, M, COMM, DOT, SLSH, RSFT, UP, \
  27. LCTL, LGUI, LALT, SPC, RALT, RGUI, APP, RCTL, LEFT, DOWN, RGHT),
  28. /* Layer 1:
  29. *
  30. * ,---. ,---------------. ,---------------. ,---------------. ,-----------.
  31. * |Esc| |F1 |F2 |F3 |F4 | |F5 |F6 |F7 |F8 | |F9 |F10|F11|F12| |PrS|ScL|Slp|
  32. * `---' `---------------' `---------------' `---------------' `-----------'
  33. * ,-----------------------------------------------------------. ,-----------.
  34. * |~ | 1| 2| 3| 4| 5| 6| 7| 8| 9|Mut|V- |V+ |Backsp | |Ins|Hom|PgU|
  35. * |-----------------------------------------------------------| |-----------|
  36. * |Tab | Q| W| E| R| T| Y| U| I|MSt|Ply|Prv|Nxt|Media| |Del|End|PgD|
  37. * |-----------------------------------------------------------| `-----------'
  38. * |FN1 | A| S| D| F| G| H| J| K| L| ;| '|Return |
  39. * |-----------------------------------------------------------| ,---.
  40. * |Shft|iso| Z| X|Clc| V| B| N| M| ,| .| /|Caps | |Up |
  41. * |-----------------------------------------------------------| ,-----------.
  42. * |Ctl|Gui|Alt| Space |Alt|Gui|App|Ctl| |Lef|Dow|Rig|
  43. * `-----------------------------------------------------------' `-----------'
  44. */
  45. KEYMAP(\
  46. ESC, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12, PSCR, SLCK, SLEP, \
  47. GRV, 1, 2, 3, 4, 5, 6, 7, 8, 9,MUTE, VOLD, VOLU, BSPC, INS, HOME, PGUP, \
  48. TAB, Q, W, E, R, T, Y, U, I,MSTP,MPLY, MPRV, MNXT, MSEL, DEL, END, PGDN, \
  49. FN1, A, S, D, F, G, H, J, K, L, SCLN, QUOT, ENT, \
  50. LSFT, NUBS, Z, X,CALC, V, B, N, M, COMM, DOT, SLSH, CAPS, UP, \
  51. LCTL, LGUI, LALT, SPC, RALT, RGUI, APP, RCTL, LEFT, DOWN, RGHT),
  52. };
  53. static const uint16_t PROGMEM fn_actions[] = {
  54. [1] = ACTION_LAYER_MOMENTARY(1), // activate layer 1 when FN1 pressed
  55. };