From a30e6ea7f5b5a316f3ff1f848ca2476351672426 Mon Sep 17 00:00:00 2001 From: Douglas Teles Date: Thu, 2 Jul 2026 23:28:12 -0300 Subject: [PATCH] emulationstation: fix clipped Internet Status, wire DISABLE POWER LED Bump to the ES fork fix: the async INTERNET STATUS row now reserves the cell for the widest value so NOT CONNECTED no longer clips, and the DISABLE POWER LED switch actually drives the LED (it used to write a conf key nothing consumed). 096-powerled honours powerled.disabled at boot so the choice survives a restart. Co-Authored-By: Claude Fable 5 --- projects/ArchR/packages/archr/autostart/096-powerled | 8 ++++++-- projects/ArchR/packages/ui/emulationstation/package.mk | 2 +- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/projects/ArchR/packages/archr/autostart/096-powerled b/projects/ArchR/packages/archr/autostart/096-powerled index 7beecffd19..d4fa808ce1 100755 --- a/projects/ArchR/packages/archr/autostart/096-powerled +++ b/projects/ArchR/packages/archr/autostart/096-powerled @@ -7,5 +7,9 @@ # default on every boot. . /etc/profile.d/001-functions -PWRLED=$(get_setting option_powerled) -[ -n "${PWRLED}" ] && /usr/bin/batocera-gameforce powerLed "${PWRLED}" & +if [ "$(get_setting powerled.disabled)" = "1" ]; then + /usr/bin/batocera-gameforce powerLed off & +else + PWRLED=$(get_setting option_powerled) + [ -n "${PWRLED}" ] && /usr/bin/batocera-gameforce powerLed "${PWRLED}" & +fi diff --git a/projects/ArchR/packages/ui/emulationstation/package.mk b/projects/ArchR/packages/ui/emulationstation/package.mk index 55c9360fb0..9cae2f3221 100644 --- a/projects/ArchR/packages/ui/emulationstation/package.mk +++ b/projects/ArchR/packages/ui/emulationstation/package.mk @@ -2,7 +2,7 @@ # Copyright (C) 2026 ArchR (https://github.com/archr-linux/Arch-R) PKG_NAME="emulationstation" -PKG_VERSION="5088e502c48e5c9c32d5f2bcfc9d0a61539f67e7" +PKG_VERSION="52ce40a43fe27c25e7d1d0f0a058b93bfdeeacf0" PKG_GIT_CLONE_BRANCH="master" PKG_LICENSE="GPL" PKG_SITE="https://github.com/archr-linux/emulationstation-next"