88 lines
2.9 KiB
Bash
88 lines
2.9 KiB
Bash
|
#!/bin/sh
|
||
|
|
||
|
set -e
|
||
|
|
||
|
function customize_menu_ui_ke() {
|
||
|
top_line
|
||
|
title '[ CUSTOMIZE MENU ]' "${yellow}"
|
||
|
inner_line
|
||
|
hr
|
||
|
menu_option '1' 'Remove' 'Creality Web Interface'
|
||
|
menu_option '2' 'Restore' 'Creality Web Interface'
|
||
|
hr
|
||
|
menu_option '3' 'Install' 'Guppy Screen'
|
||
|
menu_option '4' 'Remove' 'Guppy Screen'
|
||
|
hr
|
||
|
menu_option '5' 'Install' 'Creality Dynamic Logos for Fluidd'
|
||
|
hr
|
||
|
inner_line
|
||
|
hr
|
||
|
bottom_menu_option 'b' 'Back to [Main Menu]' "${yellow}"
|
||
|
bottom_menu_option 'q' 'Exit' "${darkred}"
|
||
|
hr
|
||
|
version_line "$(get_script_version)"
|
||
|
bottom_line
|
||
|
}
|
||
|
|
||
|
function customize_menu_ke() {
|
||
|
clear
|
||
|
customize_menu_ui_ke
|
||
|
local customize_menu_opt
|
||
|
while true; do
|
||
|
read -p " ${white}Type your choice and validate with Enter: ${yellow}" customize_menu_opt
|
||
|
case "${customize_menu_opt}" in
|
||
|
1)
|
||
|
if [ ! -d "$FLUIDD_FOLDER" ] && [ ! -d "$MAINSAIL_FOLDER" ]; then
|
||
|
error_msg "Fluidd or Mainsail is needed, please install it first!"
|
||
|
elif [ ! -f "$CREALITY_WEB_FILE" ]; then
|
||
|
error_msg "Creality Web Interface is already removed!"
|
||
|
echo -e " ${darkred}Please restore Creality Web Interface first if you want to change the default Web Interface.${white}"
|
||
|
echo
|
||
|
else
|
||
|
run "remove_creality_web_interface" "customize_menu_ui_ke"
|
||
|
fi;;
|
||
|
2)
|
||
|
if [ -f "$CREALITY_WEB_FILE" ]; then
|
||
|
error_msg "Creality Web Interface is already present!"
|
||
|
else
|
||
|
run "restore_creality_web_interface" "customize_menu_ui_ke"
|
||
|
fi;;
|
||
|
3)
|
||
|
if [ -d "$GUPPY_SCREEN_FOLDER" ]; then
|
||
|
error_msg "Guppy Screen is already installed!"
|
||
|
echo -e " ${darkred}Please remove Guppy Screen first if you want to change the theme.${white}"
|
||
|
echo
|
||
|
elif [ -d "$IMP_SHAPERS_FOLDER" ]; then
|
||
|
error_msg "Please remove Improved Shapers Calibrations first, Guppy Screen already use it!"
|
||
|
elif [ ! -f /lib/ld-2.29.so ]; then
|
||
|
error_msg "Make sure you're running 1.3.x.x firmware version!"
|
||
|
elif [ ! -f "$KLIPPER_SHELL_FILE" ]; then
|
||
|
error_msg "Klipper Gcode Shell Command is needed, please install it first!"
|
||
|
else
|
||
|
run "install_guppy_screen" "customize_menu_ui_ke"
|
||
|
fi;;
|
||
|
4)
|
||
|
if [ ! -d "$GUPPY_SCREEN_FOLDER" ]; then
|
||
|
error_msg "Guppy Screen is not installed!"
|
||
|
else
|
||
|
run "remove_guppy_screen" "customize_menu_ui_ke"
|
||
|
fi;;
|
||
|
5)
|
||
|
if [ -f "$FLUIDD_LOGO_FILE" ]; then
|
||
|
error_msg "Creality Dynamic Logos for Fluidd are already installed!"
|
||
|
elif [ ! -d "$FLUIDD_FOLDER" ]; then
|
||
|
error_msg "Fluidd is needed, please install it first!"
|
||
|
else
|
||
|
run "install_creality_dynamic_logos" "customize_menu_ui_ke"
|
||
|
fi;;
|
||
|
B|b)
|
||
|
clear; main_menu; break;;
|
||
|
Q|q)
|
||
|
clear; exit 0;;
|
||
|
*)
|
||
|
error_msg "Please select a correct choice!";;
|
||
|
esac
|
||
|
done
|
||
|
customize_menu_ke
|
||
|
}
|