mirror of
https://github.com/RetroDECK/RetroDECK.git
synced 2025-01-18 23:05:39 +00:00
Merge remote-tracking branch
This commit is contained in:
parent
de211ef2b8
commit
e21beab26c
11
functions.sh
11
functions.sh
|
@ -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
|
||||||
#=========================
|
#=========================
|
||||||
|
|
Loading…
Reference in a new issue