RetroDECK/global.sh

96 lines
3.1 KiB
Bash
Executable file

#!/bin/bash
# This file is containing some global function needed for the script such as the config file tools
rd_conf="/var/config/retrodeck/retrodeck.cfg" # RetroDECK config file path
# if everything is working put this stuff down there
if [ ! -f $rd_conf ]
then
# Init default values, this may be overwritten by retrodeck.cfg as it sourced later with global.sh
lockfile="/var/config/retrodeck/.lock" # where the lockfile is located
emuconfigs="/app/retrodeck/emu-configs" # folder with all the default emulator configs
sdcard="/run/media/mmcblk0p1" # Steam Deck SD default path
rdhome="$HOME/retrodeck" # the retrodeck home, aka ~/retrodeck
media_folder="$HOME/retrodeck/downloaded_media" # the media folder, where all the scraped data is downloaded into
themes_folder="$HOME/retrodeck/themes" # the themes folder
hard_version="$(cat '/app/retrodeck/version')" # hardcoded version (in the readonly filesystem)
fi
#conf_init() {
# initializing and reading the retrodeck config file
if [ ! -f $rd_conf ]
then # I have to initialize the variables as they cannot be red from an empty config file
echo "RetroDECK config file not found in $rd_conf"
echo "Initializing"
touch $rd_conf
# Variables to manage: adding a variable here means adding it to conf_write()
echo "#!/bin/bash" >> $rd_conf
# version info taken from the version file
# if the version variable is not set means that is a first installation, so we populate with the hardcoded version
if [ -z $version ]
then
version="$hard_version"
#else
# version="$version"
fi
echo "version=$version" >> $rd_conf
# the retrodeck home, aka ~/retrodeck
rdhome="$HOME/retrodeck"
echo "rdhome=$rdhome" >> $rd_conf
# default roms folder location (internal)
roms_folder="$roms_folder"
echo "roms_folder=$roms_folder" >> $rd_conf
# default media folder location (internal)
media_folder="$media_folder"
echo "media_folder=$media_folder" >> $rd_conf
# default themes folder location (internal)
themes_folder="$themes_folder"
echo "themes_folder=$themes_folder" >> $rd_conf
else # i just read the variables
echo "Found RetroDECK config file in $rd_conf"
echo "Loading it"
source $rd_conf
fi
#}
conf_write() {
# writes the variables in the retrodeck config file
echo "Writing the config file: $rd_conf"
# TODO: this can be optimized with a while and a list of variables to check
if [ ! -z "$version" ] #if the variable is not null then I update it
then
sed -i "s%version=.*%version=$version%" $rd_conf
fi
if [ ! -z "$rdhome" ]
then
sed -i "s%rdhome=.*%rdhome=$rdhome%" $rd_conf
fi
if [ ! -z "$roms_folder" ]
then
sed -i "s%roms_folder=.*%roms_folder=$roms_folder%" $rd_conf
fi
if [ ! -z "$media_folder" ]
then
sed -i "s%media_folder=.*%media_folder=$media_folder%" $rd_conf
fi
if [ ! -z "$themes_folder" ]
then
sed -i "s%themes_folder=.*%themes_folder=$themes_folder%" $rd_conf
fi
}