distribution/packages/ui/emulationstation/sources/start_es.sh

48 lines
1.2 KiB
Bash
Raw Normal View History

#!/bin/bash
2022-09-25 23:07:27 +00:00
# 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
2022-09-02 21:46:22 +00:00
. /etc/profile
2022-09-25 23:07:27 +00:00
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}" ]]
2022-09-25 23:07:27 +00:00
then
unset I18NPATH LANG LANGUAGE LOCPATH
MYCHARMAP="UTF-8"
MYLANG="${MYLOCALE}.${MYCHARMAP}"
MYLOCPATH="/storage/.config/emulationstation"
if [ ! -e "${MYLOCPATH}/locale/${MYLANG}/LC_NAME" ]; then
2022-09-25 23:07:27 +00:00
performance
I18NPATH="/usr/share/i18n"
localedef -i ${MYLOCALE} \
-c \
-v \
-f ${MYCHARMAP} \
${MYLOCPATH}/locale/${MYLANG} >/var/log/start_es.log 2>&1
2022-09-25 23:07:27 +00:00
${DEVICE_CPU_GOVERNOR}
fi
export LOCPATH="${MYLOCPATH}/locale"
export LANG=${MYLANG}
export LANGUAGE=${MYLANG}
2022-09-25 23:07:27 +00:00
systemctl import-environment LANG
systemctl import-environment LOCPATH
systemctl import-environment I18NPATH
systemctl import-environment LANGUAGE
fi
emulationstation --log-path /var/log