Fix toggle
This commit is contained in:
parent
ec1a62e52d
commit
7ebf8d623f
@ -121,6 +121,8 @@ def td_released(key, state, *args, **kwargs):
|
||||
|
||||
|
||||
def rgb_tog(key, state, *args, **kwargs):
|
||||
if state.config.pixels.animation_mode == 'static_standby':
|
||||
state.config.pixels.animation_mode = 'static'
|
||||
state.config.pixels.enabled = not state.config.pixels.enabled
|
||||
return state
|
||||
|
||||
@ -196,6 +198,8 @@ def rgb_mode_knight(key, state, *args, **kwargs):
|
||||
|
||||
|
||||
def led_tog(key, state, *args, **kwargs):
|
||||
if state.config.led.animation_mode == 'static_standby':
|
||||
state.config.led.animation_mode = 'static'
|
||||
state.config.led.enabled = not state.config.led.enabled
|
||||
return state
|
||||
|
||||
|
@ -24,7 +24,7 @@ keyboard.rgb_sat_default = 100
|
||||
keyboard.rgb_val_default = 20
|
||||
keyboard.rgb_knight_effect_length = 4
|
||||
keyboard.rgb_animation_mode = 'static'
|
||||
keyboard.rgb_animation_speed = 2
|
||||
keyboard.rgb_animation_speed = 1
|
||||
|
||||
emoticons = compile_unicode_string_sequences({
|
||||
# Emoticons, but fancier
|
||||
|
Loading…
x
Reference in New Issue
Block a user