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.

73 lines
2.0 KiB

  1. #ifndef NQN_KEYS_ON_QUERTZ_DE_LATIN1_H
  2. #define NQN_KEYS_ON_QUERTZ_DE_LATIN1_H
  3. /*
  4. This file defines the desierd NQN keys if you use a software (operating sysetm)
  5. configured for a QUERTZ layout (de-latin1).
  6. These chars can be created by using ALTGR on linux and a few of them on windows
  7. with a German de-latin1 layout (depending on desktop environment and/or
  8. application).
  9. ¹²³¼½¬{[]}\¸
  10. @łŧøþ¨~
  11. æſðđŋħ̣ĸł˝^
  12. |»«¢µ·
  13. Additionally, there are some common chars that we dit not yet define:
  14. §
  15. */
  16. #include "nqn-common.h"
  17. // NQN key definitions in no particular order
  18. #define N_LT KC_NONUS_BSLASH
  19. #define N_HS KC_NONUS_HASH
  20. #define N_DOTS RALT(KC_DOT) // …
  21. #define N_USC LSFT(KC_SLASH) // _
  22. #define N_LSQBR RALT(KC_8) // [
  23. #define N_RSQBR RALT(KC_9) // ]
  24. #define N_CIRC KC_GRAVE // ^
  25. #define N_EXKL LSFT(KC_1) // !
  26. #define N_GT LSFT(KC_NONUS_BSLASH) // >
  27. #define N_EQ LSFT(KC_0) // =
  28. #define N_AMP LSFT(KC_6) // &
  29. #define N_BSLS RALT(KC_MINS) // \ backslash
  30. #define N_SLSH LSFT(KC_7) // /
  31. #define N_LCUBR RALT(KC_7) // {
  32. #define N_RCUBR RALT(KC_0) // }
  33. #define N_ASTR LSFT(KC_RBRC) // *
  34. #define N_QUES LSFT(KC_MINS) // ?
  35. #define N_LPARN LSFT(KC_8) // (
  36. #define N_RPARN LSFT(KC_9) // )
  37. #define N_MINS KC_SLASH // -
  38. #define N_COLN LSFT(KC_DOT) // :
  39. #define N_HASH KC_BSLASH // #
  40. #define N_DLR LSFT(KC_4) // $
  41. #define N_PIPE RALT(KC_NONUS_BSLASH) // |
  42. #define N_TILD RALT(KC_RBRC) // ~
  43. #define N_GRAVE LSFT(KC_EQUAL) // `
  44. #define N_PLUS KC_RBRC // +
  45. #define N_PERC LSFT(KC_5) // %
  46. #define N_QUOT LSFT(KC_2) // "
  47. #define N_SING LSFT(KC_BSLASH) // '
  48. #define N_SEMI LSFT(KC_COMM) // ;
  49. #define N_EURO RALT(KC_E) // €
  50. #define N_AT RALT(KC_Q) // @
  51. #define N_Z KC_Y
  52. #define N_Y KC_Z
  53. #define N_AE KC_QUOTE // ä
  54. #define N_OE KC_SCOLON // ö
  55. #define N_UE KC_LBRACKET // ü
  56. #define N_MU RALT(KC_M) // µ
  57. #define N_SS KC_MINS // ß
  58. #define N_DEGRE LSFT(KC_GRAVE) // °
  59. #define N_PASTE LCTL(KC_V) // CTRL+V
  60. #define N_COPY LCTL(KC_C) // CTRL+C
  61. #define N_CUT LCTL(KC_X) // CTRL+X
  62. #define N_UNDO LCTL(N_Z) // CTRL+Z
  63. #endif