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 <noreply@anthropic.com>
This commit is contained in:
Douglas Teles
2026-07-02 23:28:12 -03:00
parent d652e2d7bd
commit a30e6ea7f5
2 changed files with 7 additions and 3 deletions
@@ -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
@@ -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"