fave65s.c (388B)
1 // Copyright 2024 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(0, 0, 128, 128); 12 } else { 13 rgb_matrix_set_color(0, 0, 0, 0); 14 } 15 return true; 16 }