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.

36 lines
1.8 KiB

  1. /* Copyright 2020 unrelenting.technology
  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. #pragma once
  17. #include "quantum.h"
  18. #define LAYOUT( \
  19. l00, l01, l02, l03, l04, l05, r00, r01, r02, r03, r04, r05, r06, \
  20. l06, l07, l08, l09, l10, l11, l12, r07, r08, r09, r10, r11, r12, r13, \
  21. l13, l14, l15, l16, l17, l18, r14, r15, r16, r17, r18, r19, r20, r21, \
  22. l19, l20, l21, l22, l23, l24, r22, r23, r24, r25, r26, r27, r28, \
  23. l25, l26, l27, l28, l29, l30, r29, r30, r31, r32, r33, r34, r35, \
  24. l31, l32, l33, l34, l35, r36, r37, r38, r39, r40, r41 \
  25. ) { \
  26. { l00, l06, l13, l19, l25, l31, KC_NO, r00, r07, r14, r22, r29, r21 }, \
  27. { l01, l07, l14, l20, l26, l32, KC_NO, r01, r08, r15, r23, r30, r36 }, \
  28. { l02, l08, l15, l21, l27, l33, KC_NO, r02, r09, r16, r24, r31, r37 }, \
  29. { l03, l09, l16, l22, l28, l34, KC_NO, r03, r10, r17, r25, r32, r38 }, \
  30. { l04, l10, l17, l23, l29, l35, KC_NO, r04, r11, r18, r27, r33, r39 }, \
  31. { l05, l11, l18, l24, l30, l12, KC_NO, r05, r12, r19, r26, r34, r40 }, \
  32. { KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, r06, r13, r20, r28, r35, r41 }, \
  33. }