tomak.c (427B)
1 // Copyright 2023 Hyojin Bak (@eerraa) 2 // SPDX-License-Identifier: GPL-2.0-or-later 3 4 #include "quantum.h" 5 6 bool rgb_matrix_indicators_kb(void) { 7 if (!rgb_matrix_indicators_user()) { 8 return false; 9 } 10 if (host_keyboard_led_state().caps_lock) { 11 rgb_matrix_set_color(96, 0, 128, 128); 12 rgb_matrix_set_color(97, 0, 128, 128); 13 rgb_matrix_set_color(98, 0, 128, 128); 14 } 15 return true; 16 }