~ruther/qmk_firmware

d7727a54bc9a6ab137422e9e2b418bf9d383a01d — Joel Challis 1 year, 6 months ago 9ddb6a5
Remove LAYOUTS_HAS_RGB (#22917)

M keyboards/7c8/framework/rules.mk => keyboards/7c8/framework/rules.mk +0 -1
@@ 11,6 11,5 @@ BACKLIGHT_ENABLE = no
RGBLIGHT_ENABLE = no
AUDIO_ENABLE = no
FAUXCLICKY_ENABLE = no
LAYOUTS_HAS_RGB = no
ENCODER_ENABLE = yes
LEADER_ENABLE = yes

M keyboards/converter/hp_46010a/rules.mk => keyboards/converter/hp_46010a/rules.mk +0 -1
@@ 12,7 12,6 @@ AUDIO_ENABLE = no           # Audio output
RGBLIGHT_ENABLE = no        # Enable WS2812 RGB underlight.
SPLIT_KEYBOARD = no
WAIT_FOR_USB = yes
LAYOUTS_HAS_RGB = no
CUSTOM_MATRIX = yes

SRC = matrix.c

M keyboards/dm9records/plaid/rules.mk => keyboards/dm9records/plaid/rules.mk +0 -2
@@ 11,8 11,6 @@ BACKLIGHT_ENABLE = no       # Enable keyboard backlight functionality
RGBLIGHT_ENABLE = no        # Enable keyboard RGB underglow
AUDIO_ENABLE = no           # Audio output

LAYOUTS_HAS_RGB = no

# Disable unsupported hardware
RGBLIGHT_SUPPORTED = no
AUDIO_SUPPORTED = no

M keyboards/dm9records/tartan/rules.mk => keyboards/dm9records/tartan/rules.mk +0 -2
@@ 11,8 11,6 @@ BACKLIGHT_ENABLE = no       # Enable keyboard backlight functionality
RGBLIGHT_ENABLE = no        # Enable keyboard RGB underglow
AUDIO_ENABLE = no           # Audio output

LAYOUTS_HAS_RGB = no

# Disable unsupported hardware
RGBLIGHT_SUPPORTED = no
AUDIO_SUPPORTED = no

M keyboards/evyd13/eon40/rules.mk => keyboards/evyd13/eon40/rules.mk +0 -2
@@ 12,8 12,6 @@ RGBLIGHT_ENABLE = no        # Enable keyboard RGB underglow
AUDIO_ENABLE = no           # Audio output
ENCODER_ENABLE = yes

LAYOUTS_HAS_RGB = no

# Disable unsupported hardware
RGBLIGHT_SUPPORTED = no
AUDIO_SUPPORTED = no

M keyboards/fractal/rules.mk => keyboards/fractal/rules.mk +0 -2
@@ 10,8 10,6 @@ NKRO_ENABLE = yes           # Enable N-Key Rollover
BACKLIGHT_ENABLE = no       # Enable keyboard backlight functionality
AUDIO_ENABLE = no           # Audio output

LAYOUTS_HAS_RGB = no

# Disable unsupported hardware
RGBLIGHT_SUPPORTED = no
AUDIO_SUPPORTED = no

D keyboards/kbdfans/niu_mini/keymaps/tucznak/config.h => keyboards/kbdfans/niu_mini/keymaps/tucznak/config.h +0 -14
@@ 1,14 0,0 @@
#pragma once

#undef MANUFACTURER
#undef PRODUCT

#define MANUFACTURER    "Potato Inc."
#define PRODUCT         "Qt3.14"

/* turn off RGB when computer sleeps */
#define RGBLIGHT_SLEEP

/* send tap key if no layer key was used even after tap delay */
#define TAPPING_TERM 50
#define RETRO_TAPPING
\ No newline at end of file

D keyboards/kbdfans/niu_mini/keymaps/tucznak/keymap.c => keyboards/kbdfans/niu_mini/keymaps/tucznak/keymap.c +0 -120
@@ 1,120 0,0 @@
#include QMK_KEYBOARD_H

enum layers {
    _BASE,
    _LOWER,
    _RAISE,
    _NUM,
    _FN
};

enum keycodes {
    QWERTY = SAFE_RANGE,
    DYNAMIC_MACRO_RANGE,
};

#include "dynamic_macro.h"

const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {

    /* Base layer (0)
     * ,-----------------------------------------------------------------------------------.
     * | Tab  |   Q  |   W  |   E  |   R  |   T  |   Y  |   U  |   I  |   O  |   P  | Bksp |
     * |------+------+------+------+------+-------------+------+------+------+------+------|
     * |Esc/Fn|   A  |   S  |   D  |   F  |   G  |   H  |   J  |   K  |   L  |   ;  | Del  |
     * |------+------+------+------+------+------|------+------+------+------+------+------|
     * | Shift|   Z  |   X  |   C  |   V  |   B  |   N  |   M  |   ,  |   .  |  Up  |Enter |
     * |------+------+------+------+------+------+------+------+------+------+------+------|
     * | Ctrl |  GUI |  Alt |  \|  |Lower |Sp/Num|Space |Raise |AltGr | Left | Down |Right |
     * `-----------------------------------------------------------------------------------'
     */
    [_BASE] = LAYOUT_ortho_4x12(
        KC_TAB,           KC_Q,    KC_W,    KC_E,    KC_R,       KC_T,             KC_Y,   KC_U,       KC_I,    KC_O,    KC_P,    KC_BSPC,
        LT(_FN, KC_ESC),  KC_A,    KC_S,    KC_D,    KC_F,       KC_G,             KC_H,   KC_J,       KC_K,    KC_L,    KC_SCLN, KC_DEL,
        KC_LSFT,          KC_Z,    KC_X,    KC_C,    KC_V,       KC_B,             KC_N,   KC_M,       KC_COMM, KC_DOT,  KC_UP,   KC_ENT,
        KC_LCTL,          KC_LGUI, KC_LALT, KC_NUBS, MO(_LOWER), LT(_NUM, KC_SPC), KC_SPC, MO(_RAISE), KC_RALT, KC_LEFT, KC_DOWN, KC_RGHT
    ),

    /* Lower layer (1)
     * Function keys, navigation
     * ,-----------------------------------------------------------------------------------.
     * |  F1  |  F2  |  F3  |  F4  |  F5  |  F6  |  F7  |  F8  |  F9  | F10  | F11  | F12  |
     * |------+------+------+------+------+-------------+------+------+------+------+------|
     * |      |      |      |      |      |      |      |      |      |      |      | Ins  |
     * |------+------+------+------+------+------|------+------+------+------+------+------|
     * |      |CapsLk|      |PrtSc |ScrLk |Pause |      |      |      |      | PgUp |      |
     * |------+------+------+------+------+------+------+------+------+------+------+------|
     * |      |      |      |      |      |      |      |      | Menu | Home | PgDn | End  |
     * `-----------------------------------------------------------------------------------'
     */
    [_LOWER] = LAYOUT_ortho_4x12(
        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_CAPS, _______, KC_PSCR, KC_SCRL, KC_PAUS, _______, _______, _______, _______, KC_PGUP, _______,
        _______, _______, _______, _______, _______, _______, _______, _______, KC_APP,  KC_HOME, KC_PGDN, KC_END
    ),
    
     /* Raise layer (2)
     * National characters, special characters
     * ,-----------------------------------------------------------------------------------.
     * |  +1  |  ě2  |  š3  |  č4  |  ř5  |  ž6  |  ý7  |  á8  |  í9  |  é0  |  ´   |  ˇ   |
     * |------+------+------+------+------+-------------+------+------+------+------+------|
     * |  ;°  |      |      |      |      |      |  (   |  )   |  §   |  !   |  ú   |  /   |
     * |------+------+------+------+------+------|------+------+------+------+------+------|
     * |      |      |      |      |      |      |  %   |  =   |  ¨   |  '   |  -   |  _   |
     * |------+------+------+------+------+------+------+------+------+------+------+------|
     * |      |      |      |      |      |      |      |      |      |      |      |      |
     * `-----------------------------------------------------------------------------------'
     */
    [_RAISE] = LAYOUT_ortho_4x12(
        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),
        KC_GRV,  _______, _______, _______, _______, _______, LSFT(KC_RBRC), KC_RBRC, KC_QUOT, LSFT(KC_QUOT), KC_LBRC, LSFT(KC_LBRC),
        _______, _______, _______, _______, _______, _______, LSFT(KC_MINS), KC_MINS, KC_BSLS, LSFT(KC_BSLS), KC_SLSH, LSFT(KC_SLSH),
        _______, _______, _______, _______, _______, _______, _______,       _______, _______, _______,       _______, _______
    ),
    
    /* Numbers layer - numpad (3)
     * ,-----------------------------------------------------------------------------------.
     * |      |  1   |  2   |  3   |  4   |  5   |  6   |  7   |  8   |  9   |  0   |      |
     * |------+------+------+------+------+-------------+------+------+------+------+------|
     * |      |      |      |      |      |      |      |  4   |  5   |  6   |  /   |      |
     * |------+------+------+------+------+------|------+------+------+------+------+------|
     * |      |NumLk |      |      |      |      |      |  1   |  2   |  3   |  *   |      |
     * |------+------+------+------+------+------+------+------+------+------+------+------|
     * |      |      |      |      |      |      |      |  .   |  0   |  +   |  -   |      |
     * `-----------------------------------------------------------------------------------'
     */
    [_NUM] = LAYOUT_ortho_4x12(
        _______, 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, _______,
        _______, _______, _______, _______, _______, _______, _______, KC_KP_4, KC_KP_5, KC_KP_6, KC_PSLS, _______,
        _______, KC_NUM,  _______, _______, _______, _______, _______, KC_KP_1, KC_KP_2, KC_KP_3, KC_PAST, _______,
        _______, _______, _______, _______, _______, _______, _______, KC_DOT,  KC_KP_0, KC_PPLS, KC_PMNS, _______
    ),
    
    /* Function layer (4)
     * Backlighting, keyboard controls, etc.
     * m_ - music, r_ - RGB + backlight, f_ - macro
     * ,-----------------------------------------------------------------------------------.
     * |      | r_BL |      |Sleep |      |      |      |f_Rec1|f_Pla1|f_Stop|      |m_Vol+|
     * |------+------+------+------+------+-------------+------+------+------+------+------|
     * |      |r_VLK |r_Mod+|r_Hue+|r_Sat+|r_Bri+|      |f_Rec2|f_Pla2|      |      |m_Vol-|
     * |------+------+------+------+------+------|------+------+------+------+------+------|
     * |      |r_TOG |r_Mod-|r_Hue-|r_Sat-|r_Bri-|      |      |      |      |m_Stop|m_Mute|
     * |------+------+------+------+------+------+------+------+------+------+------+------|
     * | Reset|      |      |      |      |C+A+D |C+A+I |      |      |m_Prev|m_Paus|m_Next|
     * `-----------------------------------------------------------------------------------'
     */
    [_FN] = LAYOUT_ortho_4x12(
        _______, BL_STEP, _______,  KC_SLEP, _______, _______,     _______,     DM_REC1, DM_PLY1, DM_RSTP, _______, KC_VOLU,
        _______, VK_TOGG, RGB_MOD,  RGB_HUI, RGB_SAI, RGB_VAI,     _______,     DM_REC2, DM_PLY2, _______,      _______, KC_VOLD,
        _______, RGB_TOG, RGB_RMOD, RGB_HUD, RGB_SAD, RGB_VAD,     _______,     _______,        _______,         _______,      KC_MSTP, KC_MUTE,
        QK_BOOT, _______, _______,  _______, _______, LCA(KC_DEL), LCA(KC_INS), _______,        _______,         KC_MPRV,      KC_MPLY, KC_MNXT
    )
};

bool process_record_user(uint16_t keycode, keyrecord_t *record) {
    if (!process_record_dynamic_macro(keycode, record)) {
        return false;
    }
    return true;
}

D keyboards/kbdfans/niu_mini/keymaps/tucznak/readme.md => keyboards/kbdfans/niu_mini/keymaps/tucznak/readme.md +0 -5
@@ 1,5 0,0 @@
# TuCZnak's modified layout

This layout is optimized for Czech national QWERTZ keymap.
It includes separated layers for numbers, national characters,
special characters and configuration.

D keyboards/kbdfans/niu_mini/keymaps/tucznak/rules.mk => keyboards/kbdfans/niu_mini/keymaps/tucznak/rules.mk +0 -22
@@ 1,22 0,0 @@
# Build Options
#   change yes to no to disable
#
BOOTMAGIC_ENABLE = no       # Enable Bootmagic Lite
MOUSEKEY_ENABLE = no        # Mouse keys(+4700)
EXTRAKEY_ENABLE = yes       # Audio control and System control(+450)
CONSOLE_ENABLE = no         # Console for debug(+400)
COMMAND_ENABLE = no         # Commands for debug and configuration
NKRO_ENABLE = yes           # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work
BACKLIGHT_ENABLE = yes      # Enable keyboard backlight functionality
MIDI_ENABLE = no            # MIDI controls
AUDIO_ENABLE = no           # Audio output on port C6
UNICODE_ENABLE = no         # Unicode
BLUETOOTH_ENABLE = no       # Enable Bluetooth with the Adafruit EZ-Key HID
RGBLIGHT_ENABLE = yes       # Enable WS2812 RGB underlight. 

# Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE
SLEEP_LED_ENABLE = no       # Breathing sleep LED during USB suspend

# Userspace defines
VELOCIKEY_ENABLE = yes
LAYOUTS_HAS_RGB = no
\ No newline at end of file

M keyboards/kbdfans/niu_mini/rules.mk => keyboards/kbdfans/niu_mini/rules.mk +0 -2
@@ 11,8 11,6 @@ BACKLIGHT_ENABLE = yes      # Enable keyboard backlight functionality
AUDIO_ENABLE = no           # Audio output
RGBLIGHT_ENABLE = yes       # Enable WS2812 RGB underlight.

LAYOUTS_HAS_RGB = no

# Disable unsupported hardware
AUDIO_SUPPORTED = no
BACKLIGHT_SUPPORTED = no

M keyboards/kingly_keys/ropro/rules.mk => keyboards/kingly_keys/ropro/rules.mk +0 -1
@@ 11,4 11,3 @@ BACKLIGHT_ENABLE = no       # Enable keyboard backlight functionality
AUDIO_ENABLE = no           # Audio output
ENCODER_ENABLE = yes
RGBLIGHT_ENABLE = yes
LAYOUTS_HAS_RGB = yes

M keyboards/kingly_keys/soap/rules.mk => keyboards/kingly_keys/soap/rules.mk +0 -1
@@ 11,4 11,3 @@ BACKLIGHT_ENABLE = no       # Enable keyboard backlight functionality
AUDIO_ENABLE = no           # Audio output
ENCODER_ENABLE = yes
RGBLIGHT_ENABLE = yes
LAYOUTS_HAS_RGB = yes

M keyboards/kprepublic/bm40hsrgb/rev1/rules.mk => keyboards/kprepublic/bm40hsrgb/rev1/rules.mk +0 -2
@@ 10,5 10,3 @@ NKRO_ENABLE = no            # Enable N-Key Rollover
BACKLIGHT_ENABLE = no       # Enable keyboard backlight functionality
AUDIO_ENABLE = no           # Audio output
RGB_MATRIX_ENABLE = yes

LAYOUTS_HAS_RGB = yes

M keyboards/maple_computing/jnao/rules.mk => keyboards/maple_computing/jnao/rules.mk +0 -2
@@ 11,8 11,6 @@ BACKLIGHT_ENABLE = yes      # Enable keyboard backlight functionality
RGBLIGHT_ENABLE = no        # Enable keyboard RGB underglow
AUDIO_ENABLE = no           # Audio output

LAYOUTS_HAS_RGB = no

# Disable unsupported hardware
RGBLIGHT_SUPPORTED = no
AUDIO_SUPPORTED = no

M keyboards/montsinger/rebound/rev1/rules.mk => keyboards/montsinger/rebound/rev1/rules.mk +0 -2
@@ 10,5 10,3 @@ NKRO_ENABLE = no            # Enable N-Key Rollover
BACKLIGHT_ENABLE = no       # Enable keyboard backlight functionality
RGBLIGHT_ENABLE = no        # Enable keyboard RGB underglow
AUDIO_ENABLE = no           # Audio output

LAYOUTS_HAS_RGB = no

M keyboards/montsinger/rebound/rev2/rules.mk => keyboards/montsinger/rebound/rev2/rules.mk +0 -2
@@ 11,5 11,3 @@ BACKLIGHT_ENABLE = no       # Enable keyboard backlight functionality
RGBLIGHT_ENABLE = no        # Enable keyboard RGB underglow
AUDIO_ENABLE = no           # Audio output
ENCODER_ENABLE = yes

LAYOUTS_HAS_RGB = no

M keyboards/montsinger/rebound/rev3/rules.mk => keyboards/montsinger/rebound/rev3/rules.mk +0 -2
@@ 11,5 11,3 @@ BACKLIGHT_ENABLE = no       # Enable keyboard backlight functionality
RGBLIGHT_ENABLE = no        # Enable keyboard RGB underglow
AUDIO_ENABLE = no           # Audio output
ENCODER_ENABLE = yes

LAYOUTS_HAS_RGB = no

M keyboards/montsinger/rebound/rev4/rules.mk => keyboards/montsinger/rebound/rev4/rules.mk +0 -2
@@ 12,8 12,6 @@ RGBLIGHT_ENABLE = no        # Enable keyboard RGB underglow
AUDIO_ENABLE = no           # Audio output
ENCODER_ENABLE = yes

LAYOUTS_HAS_RGB = no

# Disable unsupported hardware
RGBLIGHT_SUPPORTED = yes
AUDIO_SUPPORTED = no

M keyboards/mt/mt40/rules.mk => keyboards/mt/mt40/rules.mk +0 -2
@@ 10,5 10,3 @@ NKRO_ENABLE = no            # Enable N-Key Rollover
BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality
AUDIO_ENABLE = no      # Audio output
RGBLIGHT_ENABLE = yes  # Enable WS2812 RGB underlight. 

LAYOUTS_HAS_RGB = no

M keyboards/ortho5by12/rules.mk => keyboards/ortho5by12/rules.mk +0 -1
@@ 10,4 10,3 @@ NKRO_ENABLE = no            # Enable N-Key Rollover
BACKLIGHT_ENABLE = no       # Enable keyboard backlight functionality
RGBLIGHT_ENABLE = no        # Enable keyboard RGB underglow
AUDIO_ENABLE = no           # Audio output
LAYOUTS_HAS_RGB = no

M keyboards/planck/ez/rules.mk => keyboards/planck/ez/rules.mk +0 -2
@@ 14,8 14,6 @@ RGBLIGHT_ENABLE = no        # Enable WS2812 RGB underlight.

ENCODER_ENABLE = yes

LAYOUTS_HAS_RGB = no

RGB_MATRIX_SUPPORTED = yes
RGBLIGHT_SUPPORTED = no
BAKCLIGHT_SUPPORTED = no

M keyboards/planck/light/rules.mk => keyboards/planck/light/rules.mk +0 -2
@@ 12,5 12,3 @@ MIDI_ENABLE = yes           # MIDI support
AUDIO_ENABLE = yes           # Audio output
RGBLIGHT_ENABLE = no        # Enable WS2812 RGB underlight.
RGB_MATRIX_ENABLE = yes

LAYOUTS_HAS_RGB = no

M keyboards/planck/rev1/rules.mk => keyboards/planck/rev1/rules.mk +0 -2
@@ 10,5 10,3 @@ NKRO_ENABLE = yes           # Enable N-Key Rollover
BACKLIGHT_ENABLE = no      # Enable keyboard backlight functionality
AUDIO_ENABLE = no            # Audio output
RGBLIGHT_ENABLE = no        # Enable WS2812 RGB underlight.

LAYOUTS_HAS_RGB = no

M keyboards/planck/rev2/rules.mk => keyboards/planck/rev2/rules.mk +0 -2
@@ 10,5 10,3 @@ NKRO_ENABLE = yes           # Enable N-Key Rollover
BACKLIGHT_ENABLE = no      # Enable keyboard backlight functionality
AUDIO_ENABLE = no            # Audio output
RGBLIGHT_ENABLE = no        # Enable WS2812 RGB underlight.

LAYOUTS_HAS_RGB = no

M keyboards/planck/rev3/rules.mk => keyboards/planck/rev3/rules.mk +0 -2
@@ 10,5 10,3 @@ NKRO_ENABLE = yes           # Enable N-Key Rollover
BACKLIGHT_ENABLE = no      # Enable keyboard backlight functionality
AUDIO_ENABLE = no            # Audio output
RGBLIGHT_ENABLE = no        # Enable WS2812 RGB underlight.

LAYOUTS_HAS_RGB = no

M keyboards/planck/rev4/rules.mk => keyboards/planck/rev4/rules.mk +0 -2
@@ 10,5 10,3 @@ NKRO_ENABLE = yes           # Enable N-Key Rollover
BACKLIGHT_ENABLE = no      # Enable keyboard backlight functionality
AUDIO_ENABLE = yes           # Audio output
RGBLIGHT_ENABLE = no        # Enable WS2812 RGB underlight.

LAYOUTS_HAS_RGB = no

M keyboards/planck/rev5/rules.mk => keyboards/planck/rev5/rules.mk +0 -2
@@ 10,5 10,3 @@ NKRO_ENABLE = yes           # Enable N-Key Rollover
BACKLIGHT_ENABLE = no      # Enable keyboard backlight functionality
AUDIO_ENABLE = yes           # Audio output
RGBLIGHT_ENABLE = no        # Enable WS2812 RGB underlight.

LAYOUTS_HAS_RGB = no

M keyboards/planck/rev6/rules.mk => keyboards/planck/rev6/rules.mk +0 -2
@@ 14,5 14,3 @@ RGBLIGHT_ENABLE = yes        # Enable WS2812 RGB underlight.
RGB_MATRIX_ENABLE = no
ENCODER_ENABLE = yes
DIP_SWITCH_ENABLE = yes

LAYOUTS_HAS_RGB = no

M keyboards/planck/rev6_drop/rules.mk => keyboards/planck/rev6_drop/rules.mk +0 -2
@@ 17,5 17,3 @@ ENCODER_ENABLE = yes
DIP_SWITCH_ENABLE = yes

SRC += matrix.c

LAYOUTS_HAS_RGB = no

M keyboards/planck/rev7/rules.mk => keyboards/planck/rev7/rules.mk +0 -2
@@ 5,5 5,3 @@ CUSTOM_MATRIX = lite
DIP_SWITCH_ENABLE = yes

SRC += matrix.c

LAYOUTS_HAS_RGB = no