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.

156 lines
8.0 KiB

  1. /* Copyright 2020
  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 "keymap.h"
  18. // clang-format off
  19. /*
  20. *
  21. * ` ! - / ; : , . = ( ) ? X
  22. *
  23. * Ą Ž E R T Y U I O P Į W
  24. *
  25. * A S D Š G H J K L Ų Ė Q
  26. *
  27. * < Z Ū C V B N M Č F Ę
  28. *
  29. *
  30. *
  31. */
  32. // Row 1
  33. #define LT_GRV KC_GRV // `
  34. #define LT_EXLM KC_1 // !
  35. #define LT_MINS KC_2 // -
  36. #define LT_SLSH KC_3 // /
  37. #define LT_SCLN KC_4 // ;
  38. #define LT_COLN KC_5 // :
  39. #define LT_COMM KC_6 // ,
  40. #define LT_DOT KC_7 // .
  41. #define LT_EQL KC_8 // =
  42. #define LT_LPRN KC_9 // (
  43. #define LT_RPRN KC_0 // )
  44. #define LT_QUES KC_MINS // ?
  45. #define LT_X KC_EQL // X
  46. // Row 2
  47. #define LT_AOGO KC_Q // Ą
  48. #define LT_ZCAR KC_W // Ž
  49. #define LT_E KC_E // E
  50. #define LT_R KC_R // R
  51. #define LT_T KC_T // T
  52. #define LT_Y KC_Y // Y
  53. #define LT_U KC_U // U
  54. #define LT_I KC_I // I
  55. #define LT_O KC_O // O
  56. #define LT_P KC_P // P
  57. #define LT_IOGO KC_LBRC // Į
  58. #define LT_W KC_RBRC // W
  59. // Row 3
  60. #define LT_A KC_A // A
  61. #define LT_S KC_S // S
  62. #define LT_D KC_D // D
  63. #define LT_SCAR KC_F // Š
  64. #define LT_G KC_G // G
  65. #define LT_H KC_H // H
  66. #define LT_J KC_J // J
  67. #define LT_K KC_K // K
  68. #define LT_L KC_L // L
  69. #define LT_UOGO KC_SCLN // Ų
  70. #define LT_EDOT KC_QUOT // Ė
  71. #define LT_Q KC_NUHS // Q
  72. // Row 4
  73. #define LT_LABK KC_NUBS // <
  74. #define LT_Z KC_Z // Z
  75. #define LT_UMAC KC_X // Ū
  76. #define LT_C KC_C // C
  77. #define LT_V KC_V // V
  78. #define LT_B KC_B // B
  79. #define LT_N KC_N // N
  80. #define LT_M KC_M // M
  81. #define LT_CCAR KC_COMM // Č
  82. #define LT_F KC_DOT // F
  83. #define LT_EOGO KC_SLSH // Ę
  84. /* Shifted symbols
  85. *
  86. * ~ 1 2 3 4 5 6 7 8 9 0 +
  87. *
  88. *
  89. *
  90. *
  91. *
  92. * >
  93. *
  94. *
  95. *
  96. */
  97. // Row 1
  98. #define LT_TILD S(LT_GRV) // ~
  99. #define LT_1 S(LT_EXLM) // 1
  100. #define LT_2 S(LT_MINS) // 2
  101. #define LT_3 S(LT_SLSH) // 3
  102. #define LT_4 S(LT_SCLN) // 4
  103. #define LT_5 S(LT_COLN) // 5
  104. #define LT_6 S(LT_COMM) // 6
  105. #define LT_7 S(LT_DOT) // 7
  106. #define LT_8 S(LT_EQL) // 8
  107. #define LT_9 S(LT_LPRN) // 9
  108. #define LT_0 S(LT_RPRN) // 0
  109. #define LT_PLUS S(LT_QUES) // +
  110. // Row 4
  111. #define LT_RABK S(LT_LABK) // >
  112. /* AltGr symbols
  113. *
  114. * ´ @ _ # $ § ^ & * [ ] ' %
  115. *
  116. * { }
  117. *
  118. * " │ | │ │
  119. *
  120. * \
  121. *
  122. *
  123. *
  124. */
  125. // Row 1
  126. #define LT_ACUT ALGR(LT_GRV) // ´
  127. #define LT_AT ALGR(LT_EXLM) // @
  128. #define LT_UNDS ALGR(LT_MINS) // _
  129. #define LT_HASH ALGR(LT_SLSH) // #
  130. #define LT_DLR ALGR(LT_SCLN) // $
  131. #define LT_SECT ALGR(LT_COLN) // §
  132. #define LT_CIRC ALGR(LT_COMM) // ^
  133. #define LT_AMPR ALGR(LT_DOT) // &
  134. #define LT_ASTR ALGR(LT_EQL) // *
  135. #define LT_LBRC ALGR(LT_LRPN) // [
  136. #define LT_RBRC ALGR(LT_RPRN) // ]
  137. #define LT_QUOT ALGR(LT_QUES) // '
  138. #define LT_PERC ALGR(LT_X) // %
  139. // Row 2
  140. #define LT_EURO ALGR(LT_E) // €
  141. #define LT_LCBR ALGR(LT_IOGO) // {
  142. #define LT_RCBR ALGR(LT_W) // }
  143. // Row 3
  144. #define LT_DQUO ALGR(LT_EDOT) // "
  145. #define LT_PIPE ALGR(LT_Q) // |
  146. // Row 4
  147. #define LT_NDSH ALGR(LT_LABK) // –
  148. #define LT_DLQU ALGR(LT_CCAR) // „
  149. #define LT_LDQU ALGR(LT_F) // “
  150. #define LT_BSLS ALGR(LT_EOGO) // (backslash)