diff options
Diffstat (limited to 'keyboards')
-rw-r--r-- | keyboards/mechmini/v2/keymaps/arkag/config.h | 16 | ||||
-rw-r--r-- | keyboards/mechmini/v2/keymaps/arkag/keymap.c | 17 | ||||
-rw-r--r-- | keyboards/mechmini/v2/keymaps/arkag/rules.mk | 3 | ||||
-rw-r--r-- | keyboards/preonic/keymaps/arkag/config.h | 30 | ||||
-rw-r--r-- | keyboards/preonic/keymaps/arkag/keymap.c | 77 | ||||
-rw-r--r-- | keyboards/preonic/keymaps/arkag/readme.md | 1 | ||||
-rw-r--r-- | keyboards/preonic/keymaps/arkag/rules.mk | 17 |
7 files changed, 157 insertions, 4 deletions
diff --git a/keyboards/mechmini/v2/keymaps/arkag/config.h b/keyboards/mechmini/v2/keymaps/arkag/config.h index e89adc097..966289459 100644 --- a/keyboards/mechmini/v2/keymaps/arkag/config.h +++ b/keyboards/mechmini/v2/keymaps/arkag/config.h | |||
@@ -1,3 +1,19 @@ | |||
1 | /* Copyright 2021 Alex Kagno | ||
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 | |||
1 | #pragma once | 17 | #pragma once |
2 | 18 | ||
3 | // save me space! | 19 | // save me space! |
diff --git a/keyboards/mechmini/v2/keymaps/arkag/keymap.c b/keyboards/mechmini/v2/keymaps/arkag/keymap.c index ee1afff05..2c64c5aac 100644 --- a/keyboards/mechmini/v2/keymaps/arkag/keymap.c +++ b/keyboards/mechmini/v2/keymaps/arkag/keymap.c | |||
@@ -1,4 +1,19 @@ | |||
1 | #include QMK_KEYBOARD_H | 1 | /* Copyright 2021 Alex Kagno |
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 | |||
2 | #include "arkag.h" | 17 | #include "arkag.h" |
3 | 18 | ||
4 | /* | 19 | /* |
diff --git a/keyboards/mechmini/v2/keymaps/arkag/rules.mk b/keyboards/mechmini/v2/keymaps/arkag/rules.mk index d46e72f75..c4ee1a7d7 100644 --- a/keyboards/mechmini/v2/keymaps/arkag/rules.mk +++ b/keyboards/mechmini/v2/keymaps/arkag/rules.mk | |||
@@ -12,6 +12,3 @@ RGBLIGHT_ENABLE = yes | |||
12 | TAP_DANCE_ENABLE = no | 12 | TAP_DANCE_ENABLE = no |
13 | UNICODE_ENABLE = yes | 13 | UNICODE_ENABLE = yes |
14 | LEADER_ENABLE = yes | 14 | LEADER_ENABLE = yes |
15 | |||
16 | # save me space! | ||
17 | EXTRAFLAGS += -flto | ||
diff --git a/keyboards/preonic/keymaps/arkag/config.h b/keyboards/preonic/keymaps/arkag/config.h new file mode 100644 index 000000000..1b42e6ef9 --- /dev/null +++ b/keyboards/preonic/keymaps/arkag/config.h | |||
@@ -0,0 +1,30 @@ | |||
1 | /* Copyright 2021 Alex Kagno | ||
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 | |||
17 | #pragma once | ||
18 | |||
19 | #ifdef AUDIO_ENABLE | ||
20 | # define STARTUP_SONG SONG(STARTUP_SOUND) | ||
21 | # define GOODBYE_SONG SONG(GOODBYE_SOUND) | ||
22 | # define AUDIO_CLICKY | ||
23 | # define AUDIO_CLICKY_FREQ_RANDOMNESS 1.0f | ||
24 | # define MIDI_BASIC | ||
25 | # define MUSIC_MASK keycode != KC_NO | ||
26 | #endif | ||
27 | |||
28 | // save me space! | ||
29 | #define NO_ACTION_MACRO | ||
30 | #define NO_ACTION_FUNCTION | ||
diff --git a/keyboards/preonic/keymaps/arkag/keymap.c b/keyboards/preonic/keymaps/arkag/keymap.c new file mode 100644 index 000000000..42b875d67 --- /dev/null +++ b/keyboards/preonic/keymaps/arkag/keymap.c | |||
@@ -0,0 +1,77 @@ | |||
1 | /* Copyright 2021 Alex Kagno | ||
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 | |||
17 | #include "arkag.h" | ||
18 | #include "muse.h" | ||
19 | |||
20 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
21 | |||
22 | [_QWERTY] = LAYOUT_preonic_grid( | ||
23 | M_EHYPR, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, M_EHYPR, | ||
24 | KC_ESC, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_BSPC, | ||
25 | KC_TAB, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, | ||
26 | KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_ENT, | ||
27 | KC_LCTL, KC_LGUI, KC_LALT, MEDIA, SYMBOL, KC_SPC, M_LMHYP, ARROW, FUNCT, XXXXXXX, KC_RALT, KC_LEAD), | ||
28 | |||
29 | [_SYMBOL] = LAYOUT_preonic_grid( | ||
30 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
31 | KC_GRV, KC_LPRN, KC_RPRN, KC_PLUS, KC_UNDS, KC_CIRC, KC_AMPR, KC_7, KC_8, KC_9, _______, _______, | ||
32 | KC_LCBR, KC_LBRC, KC_RBRC, KC_EQL, KC_MINS, KC_ASTR, KC_PIPE, KC_4, KC_5, KC_6, _______, KC_NLCK, | ||
33 | KC_RCBR, KC_EXLM, KC_AT, KC_HASH, KC_DLR, KC_PERC, KC_PDOT, KC_1, KC_2, KC_3, KC_BSLS, KC_PENT, | ||
34 | M_DASH, KC_TILD, _______, KEEB, _______, _______, _______, KC_0, KC_PSLS, KC_PMNS, KC_PPLS, KC_PAST), | ||
35 | |||
36 | [_MEDIA] = LAYOUT_preonic_grid( | ||
37 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
38 | _______, _______, _______, KC_VOLU, _______, _______, _______, _______, _______, _______, _______, _______, | ||
39 | _______, _______, KC_MPRV, KC_VOLD, KC_MNXT, _______, _______, _______, _______, _______, _______, _______, | ||
40 | KC_MPLY, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
41 | KC_MUTE, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______), | ||
42 | |||
43 | [_ARROW] = LAYOUT_preonic_grid( | ||
44 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
45 | _______, _______, _______, _______, _______, _______, _______, _______, KC_UP, _______, _______, _______, | ||
46 | _______, _______, _______, _______, _______, _______, _______, KC_LEFT, KC_DOWN, KC_RGHT, _______, _______, | ||
47 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
48 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______), | ||
49 | |||
50 | [_FUNCT] = LAYOUT_preonic_grid( | ||
51 | KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, | ||
52 | _______, _______, _______, KC_END, _______, _______, _______, _______, _______, _______, _______, _______, | ||
53 | _______, _______, _______, _______, _______, _______, KC_HOME, _______, _______, _______, _______, _______, | ||
54 | M_SFTY, _______, _______, KC_CALC, _______, _______, _______, _______, _______, _______, _______, KC_CAPS, | ||
55 | _______, _______, _______, _______, _______, _______, M_AEST, _______, _______, _______, _______, M_OS ), | ||
56 | |||
57 | [_KEEB] = LAYOUT_preonic_grid( | ||
58 | CK_TOGG, AU_TOG, MU_TOG, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
59 | M_USSR, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
60 | _______, BL_TOGG, BL_STEP, BL_INC, BL_DEC, BL_BRTG, _______, _______, _______, _______, _______, _______, | ||
61 | RGB_M_P, RGB_TOG, RGB_MOD, RGB_VAI, RGB_VAD, RGB_HUI, RGB_HUD, RGB_SAI, RGB_SAD, _______, _______, _______, | ||
62 | RESET, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______), | ||
63 | |||
64 | }; | ||
65 | |||
66 | #ifdef AUDIO_ENABLE | ||
67 | bool music_mask_user(uint16_t keycode) { | ||
68 | switch (keycode) { | ||
69 | case MU_TOG: | ||
70 | case SYMBOL: | ||
71 | case KEEB: | ||
72 | return false; | ||
73 | default: | ||
74 | return true; | ||
75 | } | ||
76 | } | ||
77 | #endif | ||
diff --git a/keyboards/preonic/keymaps/arkag/readme.md b/keyboards/preonic/keymaps/arkag/readme.md new file mode 100644 index 000000000..e911968dd --- /dev/null +++ b/keyboards/preonic/keymaps/arkag/readme.md | |||
@@ -0,0 +1 @@ | |||
# The default Preonic layout - largely based on the Planck's \ No newline at end of file | |||
diff --git a/keyboards/preonic/keymaps/arkag/rules.mk b/keyboards/preonic/keymaps/arkag/rules.mk new file mode 100644 index 000000000..8b04cf2aa --- /dev/null +++ b/keyboards/preonic/keymaps/arkag/rules.mk | |||
@@ -0,0 +1,17 @@ | |||
1 | BOOTMAGIC_ENABLE = lite | ||
2 | MOUSEKEY_ENABLE = no | ||
3 | STENO_ENABLE = no | ||
4 | EXTRAKEY_ENABLE = yes | ||
5 | CONSOLE_ENABLE = no | ||
6 | COMMAND_ENABLE = no | ||
7 | SLEEP_LED_ENABLE = yes | ||
8 | NKRO_ENABLE = yes | ||
9 | BACKLIGHT_ENABLE = no | ||
10 | AUDIO_ENABLE = yes | ||
11 | RGBLIGHT_ENABLE = yes | ||
12 | TAP_DANCE_ENABLE = no | ||
13 | UNICODE_ENABLE = yes | ||
14 | LEADER_ENABLE = yes | ||
15 | |||
16 | # from default | ||
17 | SRC += muse.c | ||