~ruther/qmk_firmware

ref: 950645e17e7aa5d65e97b73d21851fffb519e5c5 qmk_firmware/users/spidey3/init.c -rw-r--r-- 468 bytes
950645e1 — Duncan Sutherland Spruce up `dactyl_lightcycle` and `dactyl_maximus` layouts (#21519) 1 year, 10 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Copyright 2022 Joshua Diamond josh@windowoffire.com (@spidey3)
// SPDX-License-Identifier: GPL-2.0-or-later

#include "spidey3.h"

void keyboard_post_init_user(void) {
#ifdef RGBLIGHT_ENABLE
    keyboard_post_init_user_rgb();
#endif
}

void eeconfig_init_user(void) {
    set_single_persistent_default_layer(_BASE);
#ifdef UNICODEMAP_ENABLE
    eeconfig_init_user_unicode();
#endif
}

#ifdef RGBLIGHT_ENABLE
void shutdown_user(void) { shutdown_user_rgb(); }
#endif
Do not follow this link