This commit is contained in:
Cyril 2024-03-23 14:53:32 +01:00
parent 6804b606d7
commit 7ee3504407
9 changed files with 128 additions and 0 deletions

View file

@ -47,6 +47,7 @@ function info_menu_ui_ke() {
info_line "$(check_folder_ke "$OCTOEVERYWHERE_FOLDER")" 'OctoEverywhere'
info_line "$(check_folder_ke "$MOONRAKER_OBICO_FOLDER")" 'Obico'
info_line "$(check_folder_ke "$MOBILERAKER_COMPANION_FOLDER")" 'Mobileraker Companion'
info_line "$(check_folder_ke "$GUPPYFLO_FOLDER")" 'GuppyFLO'
hr
subtitle '•CUSTOMIZATION:'
info_line "$(check_file_ke "$CREALITY_WEB_FILE")" 'Creality Web Interface'

View file

@ -29,6 +29,7 @@ function install_menu_ui_ke() {
menu_option '11' 'Install' 'OctoEverywhere'
menu_option '12' 'Install' 'Moonraker Obico'
menu_option '13' 'Install' 'Mobileraker Companion'
menu_option '14' 'Install' 'GuppyFLO'
hr
inner_line
hr
@ -150,6 +151,12 @@ function install_menu_ke() {
else
run "install_mobileraker_companion" "install_menu_ui_ke"
fi;;
14)
if [ ! -d "$MOONRAKER_FOLDER" ] && [ ! -d "$NGINX_FOLDER" ]; then
error_msg "Moonraker and Nginx are needed, please install them first!"
else
run "install_guppyflo" "install_menu_ui_ke"
fi;;
B|b)
clear; main_menu; break;;
Q|q)

View file

@ -29,6 +29,7 @@ function remove_menu_ui_ke() {
menu_option '11' 'Remove' 'OctoEverywhere'
menu_option '12' 'Remove' 'Moonraker Obico'
menu_option '13' 'Remove' 'Mobileraker Companion'
menu_option '14' 'Remove' 'GuppyFLO'
hr
inner_line
hr
@ -146,6 +147,12 @@ function remove_menu_ke() {
else
run "remove_mobileraker_companion" "remove_menu_ui_ke"
fi;;
14)
if [ ! -d "$GUPPYFLO_FOLDER" ]; then
error_msg "GuppyFLO is not installed!"
else
run "remove_guppyflo" "remove_menu_ui_ke"
fi;;
B|b)
clear; main_menu; break;;
Q|q)