aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKablersalat <crt@adastra7.net>2025-02-24 13:24:24 +0100
committerKablersalat <crt@adastra7.net>2025-02-24 13:24:24 +0100
commitcde3bd2ffc0267742994c3dbb19b4ff5d4eff1fa (patch)
treee274e9b836dd6e66214fefad0555ded68b2e2760
parenta55ca2f906a2923ea305a1eb3c0d113533e173f0 (diff)
attempt 4
-rw-r--r--kiosk.sh37
1 files changed, 21 insertions, 16 deletions
diff --git a/kiosk.sh b/kiosk.sh
index 1f30fdd..3e54c8b 100644
--- a/kiosk.sh
+++ b/kiosk.sh
@@ -193,23 +193,28 @@ dialog --title "WARNING !!!" --msgbox "Do not run this script under any user oth
# Main menu for guided installation
current_step=1
while true; do
- CHOICE=$(dialog --title "Rafisa Kiosk Configuration Menu" --menu "Choose an option:" 20 60 10 \
- 1 "Install Required Packages" \
- 2 "Install .xinitrc file" \
- 3 "Configure and Install Kiosk script (start.sh)" \
- 4 "Enable Automatic Sign-In" \
- 5 "Append X autostart to .bashrc for console users" \
- 6 "Exit" \
- 3>&1 1>&2 2>&3 3>&-)
-
case $current_step in
- 1) install_packages ;;
- 2) configure_xinitrc ;;
- 3) configure_start_sh ;;
- 4) configure_autologin ;;
- 5) edit_bashrc ;;
- 6) break ;;
- *) echo "Invalid option. Try another one." >&2
+ 1)
+ install_packages
+ ;;
+ 2)
+ configure_xinitrc
+ ;;
+ 3)
+ configure_start_sh
+ ;;
+ 4)
+ configure_autologin
+ ;;
+ 5)
+ edit_bashrc
+ ;;
+ 6)
+ break
+ ;;
+ *)
+ echo "Invalid option. Try another one." >&2
+ ;;
esac
# Automatically proceed to the next step if the previous step was successful