From 90a994a68558a4744dfb6c2eebb53c4fcc4820b7 Mon Sep 17 00:00:00 2001 From: Stephen Horvath Date: Mon, 20 Oct 2025 15:07:37 +1000 Subject: [PATCH] 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. --- yafi/leds.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/yafi/leds.py b/yafi/leds.py index 6fe82f1..eec72d5 100644 --- a/yafi/leds.py +++ b/yafi/leds.py @@ -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