mirror of
https://github.com/RetroDECK/RetroDECK.git
synced 2024-11-22 05:55:38 +00:00
Fixed installer
This commit is contained in:
parent
ac5398721f
commit
97b12d5f93
15
retrodeck.sh
15
retrodeck.sh
|
@ -9,7 +9,12 @@ is_mounted() {
|
||||||
# if we got the .lock file it means that it's not a first run
|
# if we got the .lock file it means that it's not a first run
|
||||||
if [ ! -f ~/retrodeck/.lock ]
|
if [ ! -f ~/retrodeck/.lock ]
|
||||||
then
|
then
|
||||||
kdialog --title "RetroDECK" --yes-label "Internal" --no-label "SD Card" --yesno "Where do you want your rom folder to be located?"
|
kdialog --title "RetroDECK" --yes-label "Yes" --no-label "Quit" --yesno "Welcome to the first configuration of RetroDECK.\n\nBefore starting, are you in Desktop Mode?\nIf not the program will quit as the first setup MUST be done in Desktop Mode."
|
||||||
|
if [ $? == 1 ] #quit
|
||||||
|
then
|
||||||
|
exit 0
|
||||||
|
fi
|
||||||
|
kdialog --title "RetroDECK" --yes-label "Internal" --no-label "SD Card" --yesno "Where do you want your roms folder to be located?"
|
||||||
if [ $? == 0 ] #yes - Internal
|
if [ $? == 0 ] #yes - Internal
|
||||||
then
|
then
|
||||||
roms_folder=~/retrodeck/roms
|
roms_folder=~/retrodeck/roms
|
||||||
|
@ -33,12 +38,14 @@ then
|
||||||
rm ~/retrodeck/bios
|
rm ~/retrodeck/bios
|
||||||
rm /var/config/retrodeck/tools/*
|
rm /var/config/retrodeck/tools/*
|
||||||
|
|
||||||
kdialog --title "RetroDECK" --msgbox "EmulationStation will now initialize the system, please don't edit the rom location.\nJust select CREATE DIRECTORIES, YES, QUIT buttons.\nRetroDECK will manage the rest."
|
kdialog --title "RetroDECK" --msgbox "EmulationStation will now initialize the system, please don't edit the roms location, just select:\n\nCREATE DIRECTORIES, YES, QUIT\n\nRetroDECK will manage the rest."
|
||||||
|
|
||||||
mkdir -p /var/config/emulationstation/
|
mkdir -p /var/config/emulationstation/
|
||||||
|
|
||||||
emulationstation --home /var/config/emulationstation
|
emulationstation --home /var/config/emulationstation
|
||||||
|
|
||||||
|
kdialog --title "RetroDECK" --msgbox "RetroDECK will now install the needed files, please wait one minute, another message will notify when the process will be finished.\n\nPress OK to continue."
|
||||||
|
|
||||||
mv /var/config/emulationstation/ROMs /var/config/emulationstation/ROMs.bak
|
mv /var/config/emulationstation/ROMs /var/config/emulationstation/ROMs.bak
|
||||||
ln -s $roms_folder /var/config/emulationstation/ROMs
|
ln -s $roms_folder /var/config/emulationstation/ROMs
|
||||||
mv /var/config/emulationstation/ROMs.bak $roms_folder
|
mv /var/config/emulationstation/ROMs.bak $roms_folder
|
||||||
|
@ -65,7 +72,7 @@ then
|
||||||
|
|
||||||
touch ~/retrodeck/.lock
|
touch ~/retrodeck/.lock
|
||||||
|
|
||||||
kdialog --title "RetroDECK" --msgbox "Initialization completed, please put your roms in: $roms_folder.\nIf you wish to change the roms location you may use the tool located the tools section of RetroDECK."
|
kdialog --title "RetroDECK" --msgbox "Initialization completed, please put your roms in: $roms_folder.\nIf you wish to change the roms location you may use the tool located the tools section of RetroDECK (coming soon)."
|
||||||
else
|
else
|
||||||
emulationstation --home /var/config/emulationstation
|
emulationstation --home /var/config/emulationstation
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in a new issue