distribution/packages/ui/emulationstation/sources/start_es.sh
fewtarius 73dff6fa94
* Add support for multiple device trees.
* Add support for RG353V (use RG353P image, enable switch in system settings).
* Fix language selection bug.
* Fix another brightness bug.
* Fix shader build conflict.
* Force Retroarch to use glcore on the RG552 if GL is still enabled.
2022-09-30 20:40:33 -04:00

47 lines
1.2 KiB
Bash
Executable file

#!/bin/bash
# SPDX-License-Identifier: GPL-2.0-or-later
# Copyright (C) 2019-present Shanti Gilbert (https://github.com/shantigilbert)
# Copyright (C) 2020-present Fewtarius
# Source predefined functions and variables
. /etc/profile
set_audio alsa
export SDL_AUDIODRIVER=alsa
TZ=$(get_setting system.timezone)
echo -n "TIMEZONE=${TZ}" > /storage/.cache/timezone
echo -n "${TZ}" >/storage/.cache/system_timezone
systemctl restart tz-data.service
MYLOCALE=$(get_setting system.language)
if [[ -n "${MYLOCALE}" ]]
then
unset I18NPATH LANG LANGUAGE LOCPATH
MYCHARMAP="UTF-8"
MYLANG="${MYLOCALE}.${MYCHARMAP}"
MYLOCPATH="/storage/.config/emulationstation"
if [ ! -e "${MYLOCPATH}/locale/${MYLANG}/LC_NAME" ]; then
performance
I18NPATH="/usr/share/i18n"
localedef -i ${MYLOCALE} \
-c \
-v \
-f ${MYCHARMAP} \
${MYLOCPATH}/locale/${MYLANG} >/var/log/start_es.log 2>&1
${DEVICE_CPU_GOVERNOR}
fi
export LOCPATH="${MYLOCPATH}/locale"
export LANG=${MYLANG}
export LANGUAGE=${MYLANG}
systemctl import-environment LANG
systemctl import-environment LOCPATH
systemctl import-environment I18NPATH
systemctl import-environment LANGUAGE
fi
emulationstation --log-path /var/log