Disable blue power button colour

Early Intel models report that their power button LED supports blue
colour, but in reality it just turns it off.
This commit is contained in:
Stephen Horvath
2025-10-20 15:07:37 +10:00
parent 7b123da001
commit 90a994a685

View File

@@ -118,6 +118,9 @@ class LedsPage(Gtk.Box):
continue
else:
raise e
# Power LED does not support Blue, even though Intel models think they do
leds[ec_commands.leds.EcLedId.EC_LED_ID_POWER_LED][2] = 0
def handle_led_colour(combobox, led_id):
colour = combobox.get_selected() - 2