From e21beab26c2f646f77ef2cf44643b06a11622192 Mon Sep 17 00:00:00 2001 From: icenine451 Date: Thu, 13 Oct 2022 15:26:02 -0400 Subject: [PATCH] Merge remote-tracking branch --- functions.sh | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/functions.sh b/functions.sh index 158319fe..5311e61c 100644 --- a/functions.sh +++ b/functions.sh @@ -199,6 +199,14 @@ case $3 in esac } +disable_setting() { + +} + +enable_setting() { + +} + yuzu_init() { echo "----------------------" echo "Initializing YUZU" @@ -373,7 +381,7 @@ configurator_generic_dialog() { } configurator_destination_choice_dialog() { - # This dialog is for making things easy for new uers to move files to common locations. Gives the options for "Internal", "SD Card" and "Custom" locations. + # This dialog is for making things easy for new users to move files to common locations. Gives the options for "Internal", "SD Card" and "Custom" locations. # USAGE: $(configurator_destination_choice_dialog "folder being moved" "action text") # This function returns one of the values: "Back" "Internal Storage" "SD Card" "Custom Location" choice=$(zenity --title "RetroDECK Configurator Utility - Moving $1 folder" --info --no-wrap --ok-label="Back" --extra-button="Internal Storage" --extra-button="SD Card" --extra-button="Custom Location" --width=800 --height=600 \ @@ -383,7 +391,6 @@ configurator_destination_choice_dialog() { echo $choice } - #========================= # LEGACY FUNCTIONS SECTION #=========================