97 lines
3 KiB
Bash
Executable file
97 lines
3 KiB
Bash
Executable file
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
function check_folder_3ke() {
|
|
local folder_path="$1"
|
|
if [ -d "$folder_path" ]; then
|
|
echo -e "${green}✓"
|
|
else
|
|
echo -e "${red}✗"
|
|
fi
|
|
}
|
|
|
|
function check_file_3ke() {
|
|
local file_path="$1"
|
|
if [ -f "$file_path" ]; then
|
|
echo -e "${green}✓"
|
|
else
|
|
echo -e "${red}✗"
|
|
fi
|
|
}
|
|
|
|
function check_simplyprint_3ke() {
|
|
if [ ! -f "$MOONRAKER_CFG" ]; then
|
|
echo -e "${red}✗"
|
|
elif grep -q "\[simplyprint\]" "$MOONRAKER_CFG"; then
|
|
echo -e "${green}✓"
|
|
else
|
|
echo -e "${red}✗"
|
|
fi
|
|
}
|
|
|
|
function info_menu_ui_3ke() {
|
|
top_line
|
|
title '[ INFORMATION MENU ]' "${yellow}"
|
|
inner_line
|
|
hr
|
|
subtitle '•ESSENTIALS:'
|
|
info_line "$(check_folder_3ke "$MOONRAKER_FOLDER")" 'Moonraker & Nginx'
|
|
info_line "$(check_folder_3ke "$FLUIDD_FOLDER")" 'Fluidd'
|
|
info_line "$(check_folder_3ke "$MAINSAIL_FOLDER")" 'Mainsail'
|
|
hr
|
|
subtitle '•UTILITIES:'
|
|
info_line "$(check_file_3ke "$ENTWARE_FILE")" 'Entware'
|
|
info_line "$(check_file_3ke "$KLIPPER_SHELL_FILE")" 'Klipper Gcode Shell Command'
|
|
hr
|
|
subtitle '•IMPROVEMENTS:'
|
|
info_line "$(check_folder_3ke "$IMP_SHAPERS_FOLDER")" 'Improved Shapers Calibrations'
|
|
info_line "$(check_file_3ke "$SAVE_ZOFFSET_FILE")" 'Save Z-Offset Macros'
|
|
info_line "$(check_file_3ke "$SCREWS_ADJUST_FILE")" 'Screws Tilt Adjust Support'
|
|
info_line "$(check_file_3ke "$M600_SUPPORT_FILE")" 'M600 Support'
|
|
info_line "$(check_file_3ke "$GIT_BACKUP_FILE")" 'Git Backup'
|
|
hr
|
|
subtitle '•CAMERA:'
|
|
info_line "$(check_file_3ke "$TIMELAPSE_FILE")" 'Moonraker Timelapse'
|
|
info_line "$(check_file_3ke "$CAMERA_SETTINGS_FILE")" 'Nebula Camera Settings Control'
|
|
info_line "$(check_file_3ke "$USB_CAMERA_FILE")" 'USB Camera Support'
|
|
hr
|
|
subtitle '•REMOTE ACCESS:'
|
|
info_line "$(check_folder_3ke "$OCTOEVERYWHERE_FOLDER")" 'OctoEverywhere'
|
|
info_line "$(check_folder_3ke "$MOONRAKER_OBICO_FOLDER")" 'Obico'
|
|
info_line "$(check_folder_3ke "$GUPPYFLO_FOLDER")" 'GuppyFLO'
|
|
info_line "$(check_folder_3ke "$MOBILERAKER_COMPANION_FOLDER")" 'Mobileraker Companion'
|
|
info_line "$(check_folder_3ke "$OCTOAPP_COMPANION_FOLDER")" 'OctoApp Companion'
|
|
info_line "$(check_simplyprint_3ke)" 'SimplyPrint'
|
|
hr
|
|
subtitle '•CUSTOMIZATION:'
|
|
info_line "$(check_file_3ke "$CREALITY_WEB_FILE")" 'Creality Web Interface'
|
|
info_line "$(check_folder_3ke "$GUPPY_SCREEN_FOLDER")" 'Guppy Screen'
|
|
info_line "$(check_file_3ke "$FLUIDD_LOGO_FILE")" '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 info_menu_3ke() {
|
|
clear
|
|
info_menu_ui_3ke
|
|
local info_menu_opt
|
|
while true; do
|
|
read -p " ${white}Type your choice and validate with Enter: ${yellow}" info_menu_opt
|
|
case "${info_menu_opt}" in
|
|
B|b)
|
|
clear; main_menu; break;;
|
|
Q|q)
|
|
clear; exit 0;;
|
|
*)
|
|
error_msg "Please select a correct choice!";;
|
|
esac
|
|
done
|
|
info_menu_3ke
|
|
}
|