mirror of
https://github.com/RetroDECK/RetroDECK.git
synced 2024-11-25 15:35:38 +00:00
Create configurator.sh
Start configurator skeleton
This commit is contained in:
parent
1409a9eea1
commit
377da5f30f
47
tools/configurator.sh
Normal file
47
tools/configurator.sh
Normal file
|
@ -0,0 +1,47 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
source /app/bin/global.sh # Store actual work code in globals (for use elsewhere if needed) and keep Configurator strictly dialogs
|
||||||
|
|
||||||
|
# Configurator Option Tree
|
||||||
|
|
||||||
|
# Welcome
|
||||||
|
# - Move Directories
|
||||||
|
# - Migrate ROM directory
|
||||||
|
# - Migrate downloaded_media
|
||||||
|
# - Migrate BIOS directory
|
||||||
|
# - Change Options
|
||||||
|
# - Change Rewind Setting
|
||||||
|
# - Upgrade Files
|
||||||
|
# - Grab all missing cores
|
||||||
|
# - Update all cores to nightly
|
||||||
|
# - RetroAchivement login
|
||||||
|
# - Login prompt
|
||||||
|
# - Reset RetroDECK
|
||||||
|
# - Reset RetroArch
|
||||||
|
# - Reset Standalone Emulators
|
||||||
|
# - Reset Tools
|
||||||
|
# - Reset All
|
||||||
|
|
||||||
|
configurator_welcome_dialog() {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
configurator_migration_dialog() {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
configurator_options_dialog() {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
configurator_update_dialog() {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
configurator_retroachivement_dialog() {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
configurator_reset_dialog() {
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in a new issue