From 08d54de98432f0257dcafa62fd532763984cc72f Mon Sep 17 00:00:00 2001 From: Cyril Date: Wed, 15 May 2024 01:05:45 +0200 Subject: [PATCH] Update main_menu.sh --- scripts/menu/main_menu.sh | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/scripts/menu/main_menu.sh b/scripts/menu/main_menu.sh index 11d0557..6dd28d3 100755 --- a/scripts/menu/main_menu.sh +++ b/scripts/menu/main_menu.sh @@ -7,6 +7,10 @@ if echo "$get_model" | grep -iq "K1"; then model="K1" elif echo "$get_model" | grep -iq "F001"; then model="3V3" +elif echo "$get_model" | grep -iq "F005"; then + model="3KE" +elif echo "$get_model" | grep -iq "F003"; then + model="10SE" fi function get_script_version() { @@ -30,8 +34,12 @@ function script_title() { title="K1 SERIES" elif [ "$model" = "3V3" ]; then title="ENDER-3 V3 SERIES" + elif [ "$model" = "3KE" ]; then + title="ENDER-3 V3 KE" + elif [ "$model" = "10SE" ]; then + title="CR-10 SE" else - title="KE SERIES" + title="PRINTERS" fi echo "${title}" }