Remove userspace keymaps (#22544)
This commit is contained in:
		
							parent
							
								
									4908d4b1ca
								
							
						
					
					
						commit
						1ed03f498f
					
				
					 2738 changed files with 0 additions and 207314 deletions
				
			
		| 
						 | 
				
			
			@ -1,50 +0,0 @@
 | 
			
		|||
/* Copyright 2021 Jonathan Rascher
 | 
			
		||||
 *
 | 
			
		||||
 * This program is free software: you can redistribute it and/or modify
 | 
			
		||||
 * it under the terms of the GNU General Public License as published by
 | 
			
		||||
 * the Free Software Foundation, either version 2 of the License, or
 | 
			
		||||
 * (at your option) any later version.
 | 
			
		||||
 *
 | 
			
		||||
 * This program is distributed in the hope that it will be useful,
 | 
			
		||||
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
			
		||||
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | 
			
		||||
 * GNU General Public License for more details.
 | 
			
		||||
 *
 | 
			
		||||
 * You should have received a copy of the GNU General Public License
 | 
			
		||||
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 | 
			
		||||
 */
 | 
			
		||||
 | 
			
		||||
#include QMK_KEYBOARD_H
 | 
			
		||||
 | 
			
		||||
#include "bcat.h"
 | 
			
		||||
 | 
			
		||||
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
 | 
			
		||||
    // clang-format off
 | 
			
		||||
    /* Default layer: http://www.keyboard-layout-editor.com/#/gists/327b41b5a933b3d44bf60ca9822e85dc */
 | 
			
		||||
    [LAYER_DEFAULT] = LAYOUT_60_ansi_split_bs_rshift(
 | 
			
		||||
        KC_ESC,   KC_1,     KC_2,     KC_3,     KC_4,     KC_5,     KC_6,     KC_7,     KC_8,     KC_9,     KC_0,     KC_MINS,  KC_EQL,   KC_BSLS,  KC_GRV,
 | 
			
		||||
        KC_TAB,   KC_Q,     KC_W,     KC_E,     KC_R,     KC_T,     KC_Y,     KC_U,     KC_I,     KC_O,     KC_P,     KC_LBRC,  KC_RBRC,  KC_BSPC,
 | 
			
		||||
        KC_LCTL,  KC_A,     KC_S,     KC_D,     KC_F,     KC_G,     KC_H,     KC_J,     KC_K,     KC_L,     KC_SCLN,  KC_QUOT,            KC_ENT,
 | 
			
		||||
        KC_LSFT,  KC_Z,     KC_X,     KC_C,     KC_V,     KC_B,     KC_N,     KC_M,     KC_COMM,  KC_DOT,   KC_SLSH,  KC_RSFT,                      LY_FN1,
 | 
			
		||||
        KC_LCTL,  KC_LGUI,  KC_LALT,                                KC_SPC,                                           KC_RALT,  LY_FN2,   KC_APP,   KC_RCTL
 | 
			
		||||
    ),
 | 
			
		||||
 | 
			
		||||
    /* Function 1 layer: http://www.keyboard-layout-editor.com/#/gists/c7a55e75285d474b6301140eaf53f915 */
 | 
			
		||||
    [LAYER_FUNCTION_1] = LAYOUT_60_ansi_split_bs_rshift(
 | 
			
		||||
        _______,  KC_F1,    KC_F2,    KC_F3,    KC_F4,    KC_F5,    KC_F6,    KC_F7,    KC_F8,    KC_F9,    KC_F10,   KC_F11,   KC_F12,   KC_INS,   KC_DEL,
 | 
			
		||||
        KC_CAPS,  _______,  _______,  _______,  _______,  _______,  _______,  _______,  KC_PSCR,  KC_SCRL,  KC_PAUS,  KC_UP,    _______,  _______,
 | 
			
		||||
        _______,  _______,  _______,  _______,  _______,  _______,  _______,  _______,  KC_HOME,  KC_PGUP,  KC_LEFT,  KC_RGHT,            _______,
 | 
			
		||||
        _______,  KC_APP,   _______,  _______,  _______,  _______,  _______,  _______,  KC_END,   KC_PGDN,  KC_DOWN,  _______,                      _______,
 | 
			
		||||
        _______,  _______,  _______,                                _______,                                          _______,  _______,  _______,  _______
 | 
			
		||||
    ),
 | 
			
		||||
 | 
			
		||||
    /* Function 2 layer: http://www.keyboard-layout-editor.com/#/gists/6e1068e4f91bbacccaf5ac0acbeec79c */
 | 
			
		||||
    [LAYER_FUNCTION_2] = LAYOUT_60_ansi_split_bs_rshift(
 | 
			
		||||
        _______,  KC_F1,    KC_F2,    KC_F3,    KC_F4,    KC_F5,    KC_F6,    KC_F7,    KC_F8,    KC_F9,    KC_F10,   KC_F11,   KC_F12,   KC_INS,   KC_DEL,
 | 
			
		||||
        _______,  _______,  KC_MPLY,  KC_VOLU,  KC_MSTP,  BL_BRTG,  EE_CLR,   QK_BOOT,  _______,  _______,  _______,  RGB_VAI,  _______,  _______,
 | 
			
		||||
        _______,  _______,  KC_MPRV,  KC_VOLD,  KC_MNXT,  BL_UP,    _______,  RGB_SPI,  RGB_HUI,  RGB_SAI,  RGB_RMOD, RGB_MOD,            RGB_TOG,
 | 
			
		||||
        _______,  _______,  _______,  KC_MUTE,  _______,  BL_DOWN,  _______,  RGB_SPD,  RGB_HUD,  RGB_SAD,  RGB_VAD,  _______,                      _______,
 | 
			
		||||
        _______,  _______,  _______,                                _______,                                          _______,  _______,  _______,  _______
 | 
			
		||||
    ),
 | 
			
		||||
    // clang-format on
 | 
			
		||||
};
 | 
			
		||||
| 
						 | 
				
			
			@ -1,24 +0,0 @@
 | 
			
		|||
# bcat's 60% ANSI split backspace/right-shift layout
 | 
			
		||||
 | 
			
		||||
This is a hybrid of a Tsangan/HHKB layout and a standard ANSI bottom row. It's
 | 
			
		||||
not my favorite layout, but it's nice enough if you only have a 6.25u spacebar.
 | 
			
		||||
Other than the bottom row, this is identical to my regular [Tsangan
 | 
			
		||||
layout](https://github.com/qmk/qmk_firmware/tree/master/layouts/community/60_tsangan_hhkb/bcat).
 | 
			
		||||
 | 
			
		||||
## Default layer
 | 
			
		||||
 | 
			
		||||

 | 
			
		||||
 | 
			
		||||
([KLE](http://www.keyboard-layout-editor.com/#/gists/327b41b5a933b3d44bf60ca9822e85dc))
 | 
			
		||||
 | 
			
		||||
## Function 1 layer
 | 
			
		||||
 | 
			
		||||

 | 
			
		||||
 | 
			
		||||
([KLE](http://www.keyboard-layout-editor.com/#/gists/c7a55e75285d474b6301140eaf53f915))
 | 
			
		||||
 | 
			
		||||
## Function 2 layer
 | 
			
		||||
 | 
			
		||||

 | 
			
		||||
 | 
			
		||||
([KLE](http://www.keyboard-layout-editor.com/#/gists/6e1068e4f91bbacccaf5ac0acbeec79c))
 | 
			
		||||
| 
						 | 
				
			
			@ -1,83 +0,0 @@
 | 
			
		|||
/* Copyright 2019 Brandon Schlack
 | 
			
		||||
 *
 | 
			
		||||
 * This program is free software: you can redistribute it and/or modify
 | 
			
		||||
 * it under the terms of the GNU General Public License as published by
 | 
			
		||||
 * the Free Software Foundation, either version 2 of the License, or
 | 
			
		||||
 * (at your option) any later version.
 | 
			
		||||
 *
 | 
			
		||||
 * This program is distributed in the hope that it will be useful,
 | 
			
		||||
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
			
		||||
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | 
			
		||||
 * GNU General Public License for more details.
 | 
			
		||||
 *
 | 
			
		||||
 * You should have received a copy of the GNU General Public License
 | 
			
		||||
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 | 
			
		||||
 */
 | 
			
		||||
#include QMK_KEYBOARD_H
 | 
			
		||||
#include "brandonschlack.h"
 | 
			
		||||
 | 
			
		||||
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
 | 
			
		||||
/* Base layer
 | 
			
		||||
 * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┐
 | 
			
		||||
 * │Esc│! 1│@ 2│# 3│$ 4│% 5│^ 6│& 7│* 8│( 9│) 0│_ -│+ =│| \│~ `│
 | 
			
		||||
 * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┤
 | 
			
		||||
 * │ Tab │ Q │ W │ E │ R │ T │ Y │ U │ I │ O │ P │{ [│} ]│Bspc │
 | 
			
		||||
 * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴─────┤
 | 
			
		||||
 * │HyCaps│ A │ S │ D │ F │ G │ H │ J │ K │ L │: ;│" '│ Enter  │
 | 
			
		||||
 * ├──────┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴────┬───┤
 | 
			
		||||
 * │ LShift │ Z │ X │ C │ V │ B │ N │ M │ , │ . │ / │↑ Shft│FnP│
 | 
			
		||||
 * ├────┬───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬┴───┤
 | 
			
		||||
 * │Ctrl│Opt │Cmd │         Space          │ Cmd│←Opt│↓ Fn│→Ctl│
 | 
			
		||||
 * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘
 | 
			
		||||
 */
 | 
			
		||||
[_BASE] = LAYOUT_60_ansi_split_bs_rshift(
 | 
			
		||||
    KC_ESC,  KC_1,    KC_2,    KC_3,    KC_4,    KC_5,    KC_6,    KC_7,    KC_8,    KC_9,    KC_0,    KC_MINS, KC_EQL,  KC_BSLS, KC_GRV,
 | 
			
		||||
    KC_TAB,  KC_Q,    KC_W,    KC_E,    KC_R,    KC_T,    KC_Y,    KC_U,    KC_I,    KC_O,    KC_P,    KC_LBRC, KC_RBRC, KC_BSPC,
 | 
			
		||||
    HY_CAPS, KC_A,    KC_S,    KC_D,    KC_F,    KC_G,    KC_H,    KC_J,    KC_K,    KC_L,    KC_SCLN, KC_QUOT,          KC_ENT,
 | 
			
		||||
    KC_LSFT,          KC_Z,    KC_X,    KC_C,    KC_V,    KC_B,    KC_N,    KC_M,    KC_COMM, KC_DOT,  KC_SLSH, UP_RSFT, PLY_FN1,
 | 
			
		||||
    KC_LCTL,  KC_LOPT,  KC_LCMD,                          KC_SPC,                             KC_RCMD, LFT_OPT, DWN_FN1, RGT_CTL
 | 
			
		||||
),
 | 
			
		||||
 | 
			
		||||
/* Function Layer
 | 
			
		||||
 * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┐
 | 
			
		||||
 * │MKE│ F1│ F2│ F3│ F4│ F5│ F6│ F7│ F8│ F9│F10│F11│F12│LHP│SLP│
 | 
			
		||||
 * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┤
 | 
			
		||||
 * │RMod │RH+│RS+│RV+│AS+│   │   │   │   │   │   │ ↑ │MNC│ Del │
 | 
			
		||||
 * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴─────┤
 | 
			
		||||
 * │RTgl  │RH-│RS-│RV-│AS-│   │   │   │VlD│VlU│ ← │ → │   Play │
 | 
			
		||||
 * ├──────┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴────┬───┤
 | 
			
		||||
 * │        │LYR│Thm│   │   │RST│   │Mut│Prv│Nxt│ ↓ │PgUSft│   │
 | 
			
		||||
 * ├────┬───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬┴───┤
 | 
			
		||||
 * │    │    │    │                        │    │HmOp│PgDF│EndC│
 | 
			
		||||
 * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘
 | 
			
		||||
 */
 | 
			
		||||
[_FN1] = LAYOUT_60_ansi_split_bs_rshift(
 | 
			
		||||
    QM_MAKE, KC_F1,   KC_F2,   KC_F3,   KC_F4,   KC_F5,   KC_F6,   KC_F7,   KC_F8,   KC_F9,   KC_F10,  KC_F11,  KC_F12,  MC_LHPD, MC_SLPD,
 | 
			
		||||
    RGB_MOD, RGB_HUI, RGB_SAI, RGB_VAI, RGB_SPI, _______, _______, _______, KC_VOLU, KC_MPRV, KC_MNXT, KC_UP,   MC_MSSN, KC_DEL,
 | 
			
		||||
    RGB_TOG, RGB_HUD, RGB_SAD, RGB_VAD, RGB_SPD, _______, _______, KC_VOLD, KC_HOME, KC_PGUP, KC_LEFT, KC_RGHT,          KC_MPLY,
 | 
			
		||||
    _______,          RGB_LYR, RGB_THM, _______, _______, QK_BOOT, _______, KC_MUTE, KC_END,  KC_PGDN, KC_DOWN, PGU_SFT, _______,
 | 
			
		||||
    _______, _______, _______,                            _______,                            _______, HOM_OPT, PGD_FN1, END_CTL
 | 
			
		||||
)
 | 
			
		||||
/*  Layer
 | 
			
		||||
 * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┐
 | 
			
		||||
 * │   │   │   │   │   │   │   │   │   │   │   │   │   │   │   │
 | 
			
		||||
 * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┤
 | 
			
		||||
 * │     │   │   │   │   │   │   │   │   │   │   │   │   │     │
 | 
			
		||||
 * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴─────┤
 | 
			
		||||
 * │      │   │   │   │   │   │   │   │   │   │   │   │        │
 | 
			
		||||
 * ├──────┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴────┬───┤
 | 
			
		||||
 * │        │   │   │   │   │   │   │   │   │   │   │      │   │
 | 
			
		||||
 * ├────┬───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬┴───┤
 | 
			
		||||
 * │    │    │    │                        │    │    │    │    │
 | 
			
		||||
 * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘
 | 
			
		||||
 */
 | 
			
		||||
/*
 | 
			
		||||
[BLANK] = LAYOUT_60_ansi_split_bs_rshift(
 | 
			
		||||
    _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
 | 
			
		||||
    _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
 | 
			
		||||
    _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,          _______,
 | 
			
		||||
    _______,          _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
 | 
			
		||||
    _______, _______, _______,                            _______,                            _______, _______, _______, _______
 | 
			
		||||
)
 | 
			
		||||
*/
 | 
			
		||||
};
 | 
			
		||||
| 
						 | 
				
			
			@ -1 +0,0 @@
 | 
			
		|||
USER_NAME := brandonschlack
 | 
			
		||||
| 
						 | 
				
			
			@ -1,33 +0,0 @@
 | 
			
		|||
#include QMK_KEYBOARD_H
 | 
			
		||||
#include "mechmerlin.h"
 | 
			
		||||
 | 
			
		||||
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
 | 
			
		||||
[_BL] = LAYOUT_60_ansi_split_bs_rshift(
 | 
			
		||||
    QK_GESC, KC_1,    KC_2, KC_3, KC_4, KC_5, KC_6, KC_7,  KC_8,    KC_9,    KC_0,    KC_MINS,  KC_EQL,  KC_BSPC, KC_BSPC,
 | 
			
		||||
	KC_TAB,  KC_Q,    KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U,  KC_I,    KC_O,    KC_P,    KC_LBRC,  KC_RBRC, KC_BSLS,
 | 
			
		||||
    KC_CTCP, KC_A,    KC_S, KC_D, KC_F, KC_G, KC_H, KC_J,  KC_K,    KC_L,    KC_SCLN, KC_QUOT,  KC_ENT,
 | 
			
		||||
    KC_LSFT, KC_Z,    KC_X, KC_C, KC_V, KC_B, KC_N, KC_M,  KC_COMM, KC_DOT,  KC_SLSH, KC_RSFT,  TG(_AL),
 | 
			
		||||
    KC_LCTL, KC_LGUI, KC_LALT,       KC_SPACE,             MO(_FL), KC_RALT, KC_RGUI, KC_RCTL),
 | 
			
		||||
 | 
			
		||||
[_FL] = LAYOUT_60_ansi_split_bs_rshift(
 | 
			
		||||
    KC_GRV,  KC_F1,    KC_F2,   KC_F3,   KC_F4,   KC_F5,   KC_F6,   KC_F7,   KC_F8,   KC_F9,   KC_F10,  KC_F11,  KC_F12,  KC_DEL, KC_DEL,
 | 
			
		||||
  	BL_TOGG, BL_UP,    BL_DOWN, BL_STEP, QK_BOOT, _______, _______, _______, _______, _______, _______, _______, _______, _______,
 | 
			
		||||
    RGB_TOG, RGB_MOD,  RGB_HUI, RGB_SAI, RGB_VAI, RGB_SPI, _______, _______, _______, _______, _______, _______, _______,
 | 
			
		||||
    VK_TOGG, RGB_RMOD, RGB_HUD, RGB_SAD, RGB_VAD, RGB_SPD, _______, KC_MUTE, KC_VOLD, KC_VOLU, _______, _______, _______,
 | 
			
		||||
    _______, _______,  _______,       MO(_CL),                               _______, _______, _______, _______),
 | 
			
		||||
 | 
			
		||||
[_AL] = LAYOUT_60_ansi_split_bs_rshift(
 | 
			
		||||
    _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
 | 
			
		||||
	_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
 | 
			
		||||
    _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
 | 
			
		||||
    _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_UP,   _______,
 | 
			
		||||
    _______, _______, _______,       _______,                               _______, KC_LEFT, KC_DOWN, KC_RIGHT),
 | 
			
		||||
 | 
			
		||||
[_CL] = LAYOUT_60_ansi_split_bs_rshift(
 | 
			
		||||
    _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
 | 
			
		||||
	_______, _______, _______, EE_CLR,  QK_BOOT, _______, _______, _______, _______, _______, _______, _______, _______, _______,
 | 
			
		||||
    _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
 | 
			
		||||
    _______, _______, _______, _______, KC_VER, _______, _______, _______, _______, _______, _______, _______,   _______,
 | 
			
		||||
    _______, _______, _______,       _______,                               _______, _______, _______, _______)
 | 
			
		||||
 | 
			
		||||
 };
 | 
			
		||||
| 
						 | 
				
			
			@ -1,20 +0,0 @@
 | 
			
		|||
# MechMerlin's Split ANSI 60% Layout
 | 
			
		||||
 | 
			
		||||
This is the 60% layout with split backspace and right shift used by u/merlin36, 
 | 
			
		||||
host of the [MechMerlin](www.youtube.com/mechmerlin) YouTube channel.
 | 
			
		||||
 | 
			
		||||
It is used on his   
 | 
			
		||||
  
 | 
			
		||||
* [DO60](https://github.com/qmk/qmk_firmware/tree/master/keyboards/do60)
 | 
			
		||||
* [DP60](https://github.com/qmk/qmk_firmware/tree/master/keyboards/dp60)
 | 
			
		||||
* [Sentraq S60-X RGB](https://github.com/qmk/qmk_firmware/tree/master/keyboards/s60_x)
 | 
			
		||||
* [Waldo](https://github.com/qmk/qmk_firmware/tree/master/keyboards/waldo)
 | 
			
		||||
* [Zeal60 Rev4](https://github.com/qmk/qmk_firmware/tree/master/keyboards/zeal60)  
 | 
			
		||||
* [AN-C](https://github.com/qmk/qmk_firmware/tree/master/keyboards/cannonkeys/an_c)
 | 
			
		||||
 | 
			
		||||
## Keymap Notes
 | 
			
		||||
- Highly influenced by the KBP V60 and WKL B.Face standard layouts
 | 
			
		||||
- Arrow toggle switch is the 1u key by right shift
 | 
			
		||||
 | 
			
		||||
### Build
 | 
			
		||||
To build the firmware file associated with this keymap, simply run `make your_keyboard:mechmerlin-split`.
 | 
			
		||||
| 
						 | 
				
			
			@ -1 +0,0 @@
 | 
			
		|||
USER_NAME := mechmerlin
 | 
			
		||||
| 
						 | 
				
			
			@ -1,83 +0,0 @@
 | 
			
		|||
/* Copyright 2020 Joseph Wasson
 | 
			
		||||
 *
 | 
			
		||||
 * This program is free software: you can redistribute it and/or modify
 | 
			
		||||
 * it under the terms of the GNU General Public License as published by
 | 
			
		||||
 * the Free Software Foundation, either version 2 of the License, or
 | 
			
		||||
 * (at your option) any later version.
 | 
			
		||||
 *
 | 
			
		||||
 * This program is distributed in the hope that it will be useful,
 | 
			
		||||
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
			
		||||
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | 
			
		||||
 * GNU General Public License for more details.
 | 
			
		||||
 *
 | 
			
		||||
 * You should have received a copy of the GNU General Public License
 | 
			
		||||
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 | 
			
		||||
 */
 | 
			
		||||
 | 
			
		||||
#pragma once
 | 
			
		||||
 | 
			
		||||
#define ENABLE_GAME_LAYER
 | 
			
		||||
 | 
			
		||||
#define TEMPLATE(                                                                   \
 | 
			
		||||
    K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, K0B, K0C, K0D, K2D,      \
 | 
			
		||||
    K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, K1B, K1C, K1D,           \
 | 
			
		||||
    K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K2A, K2B, K2C,                \
 | 
			
		||||
    K30,      K32, K33, K34, K35, K36, K37, K38, K39, K3A, K3B, K3C, K3D,           \
 | 
			
		||||
    K40, K41, K42,      K44, K45, K46,      K48, K49,      K4B, K4C                 \
 | 
			
		||||
) LAYOUT_60_ansi_split_bs_rshift(                                                   \
 | 
			
		||||
    K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, K0B, K0C, K0D, K2D,      \
 | 
			
		||||
    K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, K1B, K1C, K1D,           \
 | 
			
		||||
    K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K2A, K2B, K2C,                \
 | 
			
		||||
    K30,      K32, K33, K34, K35, K36, K37, K38, K39, K3A, K3B, K3C, K3D,           \
 | 
			
		||||
    K40, K41, K42,           K46,           K48, K49,      K4B, K4C                 \
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
/* Color Map */
 | 
			
		||||
#define CM( \
 | 
			
		||||
    K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, K0B, K0C, K0D, K2D, \
 | 
			
		||||
    K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, K1B, K1C, K1D, \
 | 
			
		||||
    K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K2A, K2B,      K2C, \
 | 
			
		||||
    K30, K32, K33, K34, K35, K36, K37, K38, K39, K3A, K3B,      K3C, K3D, \
 | 
			
		||||
    K40, K41, K42,           K47,                     K4A, K4B, K4C, K4D  \
 | 
			
		||||
) { \
 | 
			
		||||
   { K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, K0B, K0C, K0D }, \
 | 
			
		||||
   { K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, K1B, K1C, K1D }, \
 | 
			
		||||
   { K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K2A, K2B, K2C, K2D }, \
 | 
			
		||||
   { K30, {}, K32, K33, K34, K35, K36, K37, K38, K39, K3A, K3B, K3C, K3D }, \
 | 
			
		||||
   { K40, K41, K42, {}, {}, {}, {}, K47, {}, {}, K4A, K4B, K4C, K4D } \
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
#if defined (RGB_BACKLIGHT_ZEAL60) || defined (RGB_BACKLIGHT_M60_A)
 | 
			
		||||
 | 
			
		||||
  #define ZEAL_RGB
 | 
			
		||||
 | 
			
		||||
  /* enable/disable LEDs based on layout */
 | 
			
		||||
  #undef USE_SPLIT_BACKSPACE
 | 
			
		||||
  #define USE_SPLIT_BACKSPACE 1
 | 
			
		||||
 | 
			
		||||
  #undef USE_SPLIT_LEFT_SHIFT
 | 
			
		||||
  #define USE_SPLIT_LEFT_SHIFT 0
 | 
			
		||||
 | 
			
		||||
  #undef USE_SPLIT_RIGHT_SHIFT
 | 
			
		||||
  #define USE_SPLIT_RIGHT_SHIFT 1
 | 
			
		||||
 | 
			
		||||
  #undef USE_7U_SPACEBAR
 | 
			
		||||
  #define USE_7U_SPACEBAR 0
 | 
			
		||||
 | 
			
		||||
  #undef USE_ISO_ENTER
 | 
			
		||||
  #define USE_ISO_ENTER 0
 | 
			
		||||
 | 
			
		||||
  #undef TAPPING_TOGGLE
 | 
			
		||||
  #define TAPPING_TOGGLE 2
 | 
			
		||||
 | 
			
		||||
  #undef BACKLIGHT_MOD_LAYER_3
 | 
			
		||||
  #define BACKLIGHT_MOD_LAYER_3 RESET_LAYER
 | 
			
		||||
 | 
			
		||||
  #undef BACKLIGHT_ALPHAS_MODS_ROW_0
 | 
			
		||||
  #undef BACKLIGHT_ALPHAS_MODS_ROW_1
 | 
			
		||||
  #undef BACKLIGHT_ALPHAS_MODS_ROW_2
 | 
			
		||||
  #define BACKLIGHT_ALPHAS_MODS_ROW_0 0b0000000000000001
 | 
			
		||||
  #define BACKLIGHT_ALPHAS_MODS_ROW_1 0b0010000000000001
 | 
			
		||||
  #define BACKLIGHT_ALPHAS_MODS_ROW_2 0b0011000000000001
 | 
			
		||||
 | 
			
		||||
#endif //KEYBOARD_zeal60
 | 
			
		||||
| 
						 | 
				
			
			@ -1 +0,0 @@
 | 
			
		|||
// This space intentionally left blank
 | 
			
		||||
| 
						 | 
				
			
			@ -1 +0,0 @@
 | 
			
		|||
SRC += $(KEYMAP_PATH)/solarized.c
 | 
			
		||||
| 
						 | 
				
			
			@ -1,39 +0,0 @@
 | 
			
		|||
/* Copyright 2020 Joseph Wasson
 | 
			
		||||
 *
 | 
			
		||||
 * This program is free software: you can redistribute it and/or modify
 | 
			
		||||
 * it under the terms of the GNU General Public License as published by
 | 
			
		||||
 * the Free Software Foundation, either version 2 of the License, or
 | 
			
		||||
 * (at your option) any later version.
 | 
			
		||||
 *
 | 
			
		||||
 * This program is distributed in the hope that it will be useful,
 | 
			
		||||
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
			
		||||
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | 
			
		||||
 * GNU General Public License for more details.
 | 
			
		||||
 *
 | 
			
		||||
 * You should have received a copy of the GNU General Public License
 | 
			
		||||
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 | 
			
		||||
 */
 | 
			
		||||
 | 
			
		||||
#include "solarized.h"
 | 
			
		||||
 | 
			
		||||
#define MAKE_COLOR(_H, _S, _V) \
 | 
			
		||||
  { .h = (((uint32_t)_H) * 255) / 360, .s = (((uint16_t)_S) * 255) / 100, .v = (((uint16_t)_V) * 255) / 100 }
 | 
			
		||||
 | 
			
		||||
solarized_t solarized = {
 | 
			
		||||
  .base03   = MAKE_COLOR(193, 100,  21),
 | 
			
		||||
  .base02   = MAKE_COLOR(192,  90,  26),
 | 
			
		||||
  .base01   = MAKE_COLOR(194,  25,  46),
 | 
			
		||||
  .base00   = MAKE_COLOR(195,  23,  51),
 | 
			
		||||
  .base0    = MAKE_COLOR(186,  13,  59),
 | 
			
		||||
  .base1    = MAKE_COLOR(180,   9,  63),
 | 
			
		||||
  .base2    = MAKE_COLOR( 44,  11,  93),
 | 
			
		||||
  .base3    = MAKE_COLOR( 44,  10,  99),
 | 
			
		||||
  .yellow   = MAKE_COLOR( 45, 100,  71),
 | 
			
		||||
  .orange   = MAKE_COLOR( 18,  89,  80),
 | 
			
		||||
  .red      = MAKE_COLOR(  1,  79,  86),
 | 
			
		||||
  .magenta  = MAKE_COLOR(331,  74,  83),
 | 
			
		||||
  .violet   = MAKE_COLOR(237,  45,  77),
 | 
			
		||||
  .blue     = MAKE_COLOR(205,  82,  82),
 | 
			
		||||
  .cyan     = MAKE_COLOR(175,  74,  63),
 | 
			
		||||
  .green    = MAKE_COLOR( 68, 100,  60),
 | 
			
		||||
};
 | 
			
		||||
| 
						 | 
				
			
			@ -1,40 +0,0 @@
 | 
			
		|||
/* Copyright 2020 Joseph Wasson
 | 
			
		||||
 *
 | 
			
		||||
 * This program is free software: you can redistribute it and/or modify
 | 
			
		||||
 * it under the terms of the GNU General Public License as published by
 | 
			
		||||
 * the Free Software Foundation, either version 2 of the License, or
 | 
			
		||||
 * (at your option) any later version.
 | 
			
		||||
 *
 | 
			
		||||
 * This program is distributed in the hope that it will be useful,
 | 
			
		||||
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
			
		||||
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | 
			
		||||
 * GNU General Public License for more details.
 | 
			
		||||
 *
 | 
			
		||||
 * You should have received a copy of the GNU General Public License
 | 
			
		||||
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 | 
			
		||||
 */
 | 
			
		||||
 | 
			
		||||
#pragma once
 | 
			
		||||
 | 
			
		||||
#include "quantum/color.h"
 | 
			
		||||
 | 
			
		||||
typedef struct {
 | 
			
		||||
  HSV base03;
 | 
			
		||||
  HSV base02;
 | 
			
		||||
  HSV base01;
 | 
			
		||||
  HSV base00;
 | 
			
		||||
  HSV base0;
 | 
			
		||||
  HSV base1;
 | 
			
		||||
  HSV base2;
 | 
			
		||||
  HSV base3;
 | 
			
		||||
  HSV yellow;
 | 
			
		||||
  HSV orange;
 | 
			
		||||
  HSV red;
 | 
			
		||||
  HSV magenta;
 | 
			
		||||
  HSV violet;
 | 
			
		||||
  HSV blue;
 | 
			
		||||
  HSV cyan;
 | 
			
		||||
  HSV green;
 | 
			
		||||
} solarized_t;
 | 
			
		||||
 | 
			
		||||
extern solarized_t solarized;
 | 
			
		||||
| 
						 | 
				
			
			@ -1,31 +0,0 @@
 | 
			
		|||
#include QMK_KEYBOARD_H
 | 
			
		||||
 | 
			
		||||
enum {
 | 
			
		||||
    BASE,
 | 
			
		||||
    FN,
 | 
			
		||||
    YFL
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
 | 
			
		||||
 | 
			
		||||
[BASE] = LAYOUT_60_ansi_split_bs_rshift(
 | 
			
		||||
    KC_ESC,         KC_1,    KC_2, KC_3, KC_4, KC_5, KC_6, KC_7,  KC_8,    KC_9,    KC_0,    KC_MINS,  KC_EQL,  KC_GRV, KC_BSPC,
 | 
			
		||||
    KC_TAB,         KC_Q,    KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U,  KC_I,    KC_O,    KC_P,    KC_LBRC,  KC_RBRC, KC_BSLS,
 | 
			
		||||
    LCTL_T(KC_ESC), KC_A,    KC_S, KC_D, KC_F, KC_G, KC_H, KC_J,  KC_K,    KC_L,    KC_SCLN, KC_QUOT,  KC_ENT,
 | 
			
		||||
    KC_LSFT,        KC_Z,    KC_X, KC_C, KC_V, KC_B, KC_N, KC_M,  KC_COMM, KC_DOT,  KC_SLSH, KC_RSFT,  MO(YFL),
 | 
			
		||||
    KC_LCTL,        KC_LALT, KC_LGUI,       KC_SPACE,             KC_RGUI, KC_RALT, MO(FN),  KC_RCTL),
 | 
			
		||||
 | 
			
		||||
[FN] = LAYOUT_60_ansi_split_bs_rshift(
 | 
			
		||||
    KC_GRV,  KC_F1,    KC_F2,   KC_F3,   KC_F4,   KC_F5,   KC_F6,   KC_F7,   KC_F8,   KC_F9,   KC_F10,  KC_F11,  KC_F12,  KC_DEL, KC_DEL,
 | 
			
		||||
    _______, _______,  _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
 | 
			
		||||
    _______, _______,  _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
 | 
			
		||||
    _______, _______,  _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
 | 
			
		||||
    _______, _______,  _______,             _______,                               _______, _______, _______, _______),
 | 
			
		||||
 | 
			
		||||
[YFL] = LAYOUT_60_ansi_split_bs_rshift(
 | 
			
		||||
    _______, _______,  _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
 | 
			
		||||
    _______, _______,  KC_UP,   _______, _______, _______, _______, _______, _______, _______, _______, _______, EE_CLR,  QK_BOOT,
 | 
			
		||||
    KC_CAPS, KC_LEFT,  KC_DOWN, KC_RGHT, _______, _______, _______, _______, _______, _______, _______, _______, _______,
 | 
			
		||||
    _______, _______,  _______, _______, _______, _______, _______, KC_MUTE, KC_VOLD, KC_VOLU, _______, _______, _______,
 | 
			
		||||
    _______, _______,  _______,             _______,                               _______, _______, _______, _______),
 | 
			
		||||
};
 | 
			
		||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue