Merge remote-tracking branch

This commit is contained in:
icenine451 2022-10-13 15:26:02 -04:00
parent de211ef2b8
commit e21beab26c

View file

@ -199,6 +199,14 @@ case $3 in
esac esac
} }
disable_setting() {
}
enable_setting() {
}
yuzu_init() { yuzu_init() {
echo "----------------------" echo "----------------------"
echo "Initializing YUZU" echo "Initializing YUZU"
@ -373,7 +381,7 @@ configurator_generic_dialog() {
} }
configurator_destination_choice_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") # USAGE: $(configurator_destination_choice_dialog "folder being moved" "action text")
# This function returns one of the values: "Back" "Internal Storage" "SD Card" "Custom Location" # 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 \ 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 echo $choice
} }
#========================= #=========================
# LEGACY FUNCTIONS SECTION # LEGACY FUNCTIONS SECTION
#========================= #=========================