Small changes to make things more clear.

This commit is contained in:
Storm Dragon 2023-12-16 00:21:25 -05:00
parent e034c518ee
commit c1451d0a9e

2
tojam
View File

@ -110,6 +110,7 @@ configure_ninjam() {
) )
setting="$(dialog --backtitle "Tojam" \ setting="$(dialog --backtitle "Tojam" \
--no-tags \ --no-tags \
--cancel-label "Close" \
--menu "Select a setting" -1 -1 -1 "${settings[@]}" --stdout)" --menu "Select a setting" -1 -1 -1 "${settings[@]}" --stdout)"
menuCode=$? menuCode=$?
if [ ${menuCode} -eq 1 -o ${menuCode} -eq 255 ]; then if [ ${menuCode} -eq 1 -o ${menuCode} -eq 255 ]; then
@ -185,6 +186,7 @@ configure_ninjam() {
;; ;;
esac esac
done done
dialog --msgbox "Please relaunch ${0##*/} to continue." -1 -1
exit 0 exit 0
} }