aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--keyboards/tanuki/keymaps/tucznak/config.h27
-rw-r--r--keyboards/tanuki/keymaps/tucznak/keymap.c116
-rw-r--r--keyboards/tanuki/keymaps/tucznak/readme.md8
-rw-r--r--keyboards/tanuki/keymaps/tucznak/rules.mk19
-rw-r--r--keyboards/ut472/keymaps/tucznak/config.h18
-rw-r--r--keyboards/ut472/keymaps/tucznak/keymap.c111
-rw-r--r--keyboards/ut472/keymaps/tucznak/readme.md5
-rw-r--r--keyboards/ut472/keymaps/tucznak/rules.mk18
8 files changed, 322 insertions, 0 deletions
diff --git a/keyboards/tanuki/keymaps/tucznak/config.h b/keyboards/tanuki/keymaps/tucznak/config.h
new file mode 100644
index 000000000..3a140193d
--- /dev/null
+++ b/keyboards/tanuki/keymaps/tucznak/config.h
@@ -0,0 +1,27 @@
1#pragma once
2
3#undef MANUFACTURER
4#undef PRODUCT
5#undef DESCRIPTION
6
7#define MANUFACTURER Potato Inc.
8#define PRODUCT Trash Panda
9#define DESCRIPTION Qt3.14 smolkeeb
10
11/* for bootloader */
12#define QMK_ESC_OUTPUT B2
13#define QMK_ESC_INPUT D0
14#define QMK_LED B0
15
16/* turn off RGB when computer sleeps */
17#ifdef RGBLIGHT_ENABLE
18#define RGBLIGHT_SLEEP
19#endif
20
21/* send tap key if no layer key was used even after tap delay */
22#ifdef TAPPING_TERM
23#undef TAPPING_TERM
24#endif
25#define TAPPING_TERM 250
26#define RETRO_TAPPING
27#define TAPPING_TOGGLE 2
diff --git a/keyboards/tanuki/keymaps/tucznak/keymap.c b/keyboards/tanuki/keymaps/tucznak/keymap.c
new file mode 100644
index 000000000..301f0f841
--- /dev/null
+++ b/keyboards/tanuki/keymaps/tucznak/keymap.c
@@ -0,0 +1,116 @@
1#include QMK_KEYBOARD_H
2
3enum layers {
4 _BASE,
5 _DN,
6 _UP,
7 _NAV,
8 _FN
9};
10
11const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
12
13 /* Base layer (0)
14 * ,------------------------------------------------------------------------.
15 * | Esc | Q | W | E | R | T | Y | U | I | O | P | Bksp |
16 * |-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+------|
17 * | Tab | A | S | D | F | G | H | J | K | L | ů | Nav |
18 * `------+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----'
19 * | Shift | Z | X | C | V | B | N | M | , | . |Enter |
20 * `-------+-----+-----+-----+-----+-----+-----+-----+-----+-----+------'
21 * | Ctrl | GUI |LAlt | Space | SpaceUp |AltGr| Down |
22 * `--------------------------------------------------------'
23 */
24
25 [_BASE] = LAYOUT(
26 KC_ESC, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_BSPC,
27 KC_TAB, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, TT(_NAV),
28 KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_ENT,
29 KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, LT(_UP,KC_SPC), KC_RALT, MO(_DN)
30 ),
31
32 /* Down layer (1)
33 * function keys and numbers
34 * ,------------------------------------------------------------------------.
35 * | F1 | F2 | F3 | F4 | F5 | F6 | F7 | F8 | F9 | F10 | F11 | F12 |
36 * |-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+------|
37 * | | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 0 | |
38 * `------+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----'
39 * | |NumLk| | | + | - | * | / | , | . | |
40 * `-------+-----+-----+-----+-----+-----+-----+-----+-----+-----+------'
41 * | Fn | | | C+A+D | C+A+I | | |
42 * `--------------------------------------------------------'
43 */
44
45 [_DN] = LAYOUT(
46 KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12,
47 _______, KC_KP_1, KC_KP_2, KC_KP_3, KC_KP_4, KC_KP_5, KC_KP_6, KC_KP_7, KC_KP_8, KC_KP_9, KC_KP_0, _______,
48 _______, KC_NLCK, _______, _______, KC_PPLS, KC_PMNS, KC_PAST, KC_PSLS, KC_COMM, KC_DOT, _______,
49 MO(_FN), _______, _______, LCA(KC_DEL), LCA(KC_INS), _______, _______
50 ),
51
52 /* Up layer (2)
53 * national and special characters
54 * ,------------------------------------------------------------------------.
55 * | +1 | ě2 | š3 | č4 | ř5 | ž6 | ý7 | á8 | í9 | é0 | ´ | ˇ |
56 * |-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+------|
57 * | ;° | | | | | | ( | ) | § | ! | / | ú | |
58 * `------+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----'
59 * | | | | \ | % | = | ¨ | ' | - | _ | |
60 * `-------+-----+-----+-----+-----+-----+-----+-----+-----+-----+------'
61 * | | | | | | | |
62 * `--------------------------------------------------------'
63 */
64
65 [_UP] = LAYOUT(
66 KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_EQL, LSFT(KC_EQL),
67 KC_GRV, _______, _______, _______, LSFT(KC_NUBS), LSFT(KC_RBRC), KC_RBRC, KC_QUOT, LSFT(KC_QUOT), LSFT(KC_LBRC), KC_LBRC, _______,
68 _______, _______, _______, KC_NUBS, LSFT(KC_MINS), KC_MINS, KC_BSLS, LSFT(KC_BSLS), KC_SLSH, LSFT(KC_SLSH), _______,
69 _______, _______, _______, _______, _______, _______, _______
70 ),
71
72 /* Navigation layer (3)
73 * arrows, nav cluster
74 * ,------------------------------------------------------------------------.
75 * | | | | | |Home |PgUp | | | Up | Ins | Del |
76 * |-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+------|
77 * | | | | | | End |PgDn | |Left |Down |Right| |
78 * `------+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----'
79 * | |Caps |PrtSc|ScrLk|Pause| | | | | | |
80 * `-------+-----+-----+-----+-----+-----+-----+-----+-----+-----+------'
81 * | | | | | | | Menu |
82 * `--------------------------------------------------------'
83 */
84
85 [_NAV] = LAYOUT(
86 _______, _______, _______, _______, _______, KC_HOME, KC_PGUP, _______, _______, KC_UP, KC_INS, KC_DEL,
87 _______, _______, _______, _______, _______, KC_END, KC_PGDN, _______, KC_LEFT, KC_DOWN, KC_RGHT, _______,
88 _______, KC_CAPS, KC_PSCR, KC_SLCK, KC_PAUS, _______, _______, _______, _______, _______, _______,
89 _______, _______, _______, _______, _______, _______, KC_APP
90 ),
91
92 /* Function layer (4)
93 * keyboard and system control
94 * ,------------------------------------------------------------------------.
95 * |Reset| | | | | | |Play |Prev |Next |Stop | |
96 * |-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+------|
97 * |Sleep | VLK |Mod+ |Hue+ |Sat+ |Val+ | | |Vol- |Vol+ |Mute | |
98 * `------+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----'
99 * | | TOG |Mod- |Hue- |Sat- |Val- | | | | | |
100 * `-------+-----+-----+-----+-----+-----+-----+-----+-----+-----+------'
101 * | | | | | | | |
102 * `--------------------------------------------------------'
103 */
104
105 [_FN] = LAYOUT(
106 RESET, _______, _______, _______, _______, _______, _______, KC_MPLY, KC_MPRV, KC_MNXT, KC_MSTP, _______,
107 KC_SLEP, VLK_TOG, RGB_MOD, RGB_HUI, RGB_SAI, RGB_VAI, _______, _______, KC_VOLD, KC_VOLU, KC_MUTE, _______,
108 _______, RGB_TOG, RGB_RMOD, RGB_HUD, RGB_SAD, RGB_VAD, _______, _______, _______, _______, _______,
109 _______, _______, _______, _______, _______, _______, _______
110 )
111
112};
113
114bool process_record_user (uint16_t keycode, keyrecord_t *record) {
115 return true;
116}
diff --git a/keyboards/tanuki/keymaps/tucznak/readme.md b/keyboards/tanuki/keymaps/tucznak/readme.md
new file mode 100644
index 000000000..b38490c9c
--- /dev/null
+++ b/keyboards/tanuki/keymaps/tucznak/readme.md
@@ -0,0 +1,8 @@
1# TuCZnak's modified layout
2
3This layout is optimized for Czech national QWERTZ keymap.
4It includes separated layers for:
5 - F-keys and numbers
6 - national and special characters
7 - navigation cluster
8 - keyboard config and media control
diff --git a/keyboards/tanuki/keymaps/tucznak/rules.mk b/keyboards/tanuki/keymaps/tucznak/rules.mk
new file mode 100644
index 000000000..5c5263eae
--- /dev/null
+++ b/keyboards/tanuki/keymaps/tucznak/rules.mk
@@ -0,0 +1,19 @@
1# screw Caterina
2BOOTLOADER = qmk-dfu
3
4# Build Options
5# comment out to disable the options.
6#
7BOOTMAGIC_ENABLE = no # Virtual DIP switch configuration(+1000)
8MOUSEKEY_ENABLE = no # Mouse keys(+4700)
9EXTRAKEY_ENABLE = yes # Audio control and System control(+450)
10CONSOLE_ENABLE = no # Console for debug(+400)
11COMMAND_ENABLE = no # Commands for debug and configuration
12NKRO_ENABLE = yes # USB Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work
13RGBLIGHT_ENABLE =yes # Enable keyboard underlight functionality (+4870)
14BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality (+1150)
15MIDI_ENABLE = no # MIDI controls
16AUDIO_ENABLE = no
17UNICODE_ENABLE = no # Unicode
18BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID
19TAP_DANCE_ENABLE = no
diff --git a/keyboards/ut472/keymaps/tucznak/config.h b/keyboards/ut472/keymaps/tucznak/config.h
new file mode 100644
index 000000000..06524822e
--- /dev/null
+++ b/keyboards/ut472/keymaps/tucznak/config.h
@@ -0,0 +1,18 @@
1#pragma once
2
3#undef MANUFACTURER
4#undef PRODUCT
5#undef DESCRIPTION
6
7#define MANUFACTURER Potato Inc.
8#define PRODUCT Qt3.14
9#define DESCRIPTION Smolkeeb
10
11/* turn off RGB when computer sleeps */
12#ifdef RGBLIGHT_ENABLE
13#define RGBLIGHT_SLEEP
14#endif
15
16/* send tap key if no layer key was used even after tap delay */
17#define TAPPING_TERM 50
18#define RETRO_TAPPING
diff --git a/keyboards/ut472/keymaps/tucznak/keymap.c b/keyboards/ut472/keymaps/tucznak/keymap.c
new file mode 100644
index 000000000..7fbbd0e76
--- /dev/null
+++ b/keyboards/ut472/keymaps/tucznak/keymap.c
@@ -0,0 +1,111 @@
1#include QMK_KEYBOARD_H
2
3enum layers {
4 _BASE,
5 _LEFT,
6 _RIGHT,
7 _NUM,
8 _FN
9};
10
11
12const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
13
14 /* Base Layer
15 * ,-------------------------------------------------------------------------.
16 * | Esc | Q | W | E | R | T | Y | U | I | O | P |Bspace |
17 * |-------------------------------------------------------------------------+
18 * | Tab | A | S | D | F | G | H | J | K | L | ; |Enter |
19 * |-------------------------------------------------------------------------+
20 * | Shift | Z | X | C | V | B | N | M | , | . | Up | FN |
21 * |-------------------------------------------------------------------------+
22 * | Ctrl| Win | LAlt| NUM | LEFT | Space | RIGHT| RAlt| Left| Down|Right|
23 * `-------------------------------------------------------------------------'
24 */
25
26 [_BASE] = LAYOUT(
27 KC_ESC, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_BSPC,
28 KC_TAB, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_ENT,
29 KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_UP, MO(_FN),
30 KC_LCTL, KC_LGUI, KC_LALT, MO(_NUM),MO(_LEFT), KC_SPC, MO(_RIGHT), KC_RALT, KC_LEFT, KC_DOWN, KC_RGHT
31 ),
32
33 /* Left function layer (1)
34 * F keys and navigation
35 * ,-------------------------------------------------------------------------.
36 * | F1 | F2 | F3 | F4 | F5 | F6 | F7 | F8 | F9 | F10 | F11 | F12 |
37 * |-------------------------------------------------------------------------+
38 * | | | | | | | | | | | | Ins |
39 * |-------------------------------------------------------------------------+
40 * | | Caps| |PrtSc|ScrLk|Pause| | | | | PgUp| Del |
41 * |-------------------------------------------------------------------------+
42 * | | | | | | | | Menu| Home| PgDn| End |
43 * `-------------------------------------------------------------------------'
44 */
45
46 [_LEFT] = LAYOUT(
47 KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12,
48 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_INS,
49 _______, KC_CAPS, _______, KC_PSCR, KC_SLCK, KC_PAUS, _______, _______, _______, _______, KC_PGUP, KC_DEL,
50 _______, _______, _______, _______, _______, _______, _______, KC_APP, KC_HOME, KC_PGDN, KC_END
51 ),
52
53 /* Right function layer (2)
54 * National and special characters
55 * ,-------------------------------------------------------------------------.
56 * | +1 | ě2 | š3 | č4 | ř5 | ž6 | ý7 | á8 | í9 | é0 | ´ | ˇ |
57 * |-------------------------------------------------------------------------+
58 * | ;° | | | | | | | ( | ) | § | ! | ú | / |
59 * |-------------------------------------------------------------------------+
60 * | | \ | | | | | % | = | ¨ | ' | - | _ |
61 * |-------------------------------------------------------------------------+
62 * | | | | | | | | | | | |
63 * `-------------------------------------------------------------------------'
64 */
65
66 [_RIGHT] = LAYOUT(
67 KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_EQL, LSFT(KC_EQL),
68 KC_GRV, LSFT(KC_NUBS), _______, _______, _______, _______, LSFT(KC_RBRC), KC_RBRC, KC_QUOT, LSFT(KC_QUOT), KC_LBRC, LSFT(KC_LBRC),
69 _______, KC_NUBS, _______, _______, _______, _______, LSFT(KC_MINS), KC_MINS, KC_BSLS, LSFT(KC_BSLS), KC_SLSH, LSFT(KC_SLSH),
70 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______
71 ),
72
73 /* Numpad layer (3)
74 * ,-------------------------------------------------------------------------.
75 * | | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 0 | |
76 * |-------------------------------------------------------------------------+
77 * | | | | | | | | 4 | 5 | 6 | / | |
78 * |-------------------------------------------------------------------------+
79 * | |NumLk| | | | | | 1 | 2 | 3 | * | |
80 * |-------------------------------------------------------------------------+
81 * | | | | | | | 0 | . | + | - | |
82 * `-------------------------------------------------------------------------'
83 */
84
85 [_NUM] = LAYOUT(
86 _______, KC_KP_1, KC_KP_2, KC_KP_3, KC_KP_4, KC_KP_5, KC_KP_6, KC_KP_7, KC_KP_8, KC_KP_9, KC_KP_0, _______,
87 _______, _______, _______, _______, _______, _______, _______, KC_KP_4, KC_KP_5, KC_KP_6, KC_PSLS, _______,
88 _______, KC_NLCK, _______, _______, _______, _______, _______, KC_KP_1, KC_KP_2, KC_KP_3, KC_PAST, _______,
89 _______, _______, _______, _______, _______, _______, KC_KP_0, KC_DOT, KC_PPLS, KC_PMNS, _______
90 ),
91
92 /* Function layer (4)
93 * Backlighting, keyboard controls, music etc.
94 * ,-------------------------------------------------------------------------.
95 * |Reset| | | | | | | | | | | Vol+ |
96 * |-------------------------------------------------------------------------+
97 * | | VLK | Mod+| Hue+| Sat+| Val+| | | | | | Vol- |
98 * |-------------------------------------------------------------------------+
99 * | | TOG | Mod-| Hue-| Sat-| Val-| | | | | Stop| Mute|
100 * |-------------------------------------------------------------------------+
101 * |Sleep| | | | | C+A+D | C+A+I | | Prev|Pause| Next|
102 * `-------------------------------------------------------------------------'
103 */
104
105 [_FN] = LAYOUT(
106 RESET, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_VOLU,
107 _______, VLK_TOG, RGB_MOD, RGB_HUI, RGB_SAI, RGB_VAI, _______, _______, _______, _______, _______, KC_VOLD,
108 _______, RGB_TOG, RGB_RMOD, RGB_HUD, RGB_SAD, RGB_VAD, _______, _______, _______, _______, KC_MSTP, KC_MUTE,
109 KC_SLEP, _______, _______, _______, _______, LCA(KC_DEL), LCA(KC_INS), _______, KC_MPRV, KC_MPLY, KC_MNXT
110 )
111};
diff --git a/keyboards/ut472/keymaps/tucznak/readme.md b/keyboards/ut472/keymaps/tucznak/readme.md
new file mode 100644
index 000000000..95180bc39
--- /dev/null
+++ b/keyboards/ut472/keymaps/tucznak/readme.md
@@ -0,0 +1,5 @@
1# TuCZnak's modified layout
2
3This layout is optimized for Czech national QWERTZ keymap.
4It includes separated layers for numbers, national characters,
5special characters and configuration.
diff --git a/keyboards/ut472/keymaps/tucznak/rules.mk b/keyboards/ut472/keymaps/tucznak/rules.mk
new file mode 100644
index 000000000..112b76984
--- /dev/null
+++ b/keyboards/ut472/keymaps/tucznak/rules.mk
@@ -0,0 +1,18 @@
1# Build Options
2# change yes to no to disable
3#
4BOOTMAGIC_ENABLE = no # Virtual DIP switch configuration(+1000)
5MOUSEKEY_ENABLE = no # Mouse keys(+4700)
6EXTRAKEY_ENABLE = yes # Audio control and System control(+450)
7CONSOLE_ENABLE = no # Console for debug(+400)
8COMMAND_ENABLE = no # Commands for debug and configuration
9# Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE
10SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend
11NKRO_ENABLE = yes # USB Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work
12BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default
13MIDI_ENABLE = no # MIDI support (+2400 to 4200, depending on config)
14UNICODE_ENABLE = no # Unicode
15BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID
16AUDIO_ENABLE = no # Audio output on port C6
17FAUXCLICKY_ENABLE = no # Use buzzer to emulate clicky switches
18RGBLIGHT_ENABLE = yes