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"