2020-07-13 16:59:40 +02:00
|
|
|
# setting up some frequently used functions
|
|
|
|
|
check_euid(){
|
|
|
|
|
if [ "$EUID" -eq 0 ]
|
|
|
|
|
then
|
|
|
|
|
echo -e "${red}"
|
2020-07-23 10:20:14 +02:00
|
|
|
top_border
|
|
|
|
|
echo -e "| !!! THIS SCRIPT MUST NOT RAN AS ROOT !!! |"
|
|
|
|
|
bottom_border
|
2020-07-13 16:59:40 +02:00
|
|
|
echo -e "${default}"
|
|
|
|
|
exit 1
|
|
|
|
|
fi
|
|
|
|
|
}
|
|
|
|
|
|
2020-08-26 08:18:18 +02:00
|
|
|
locate_printer_cfg(){
|
2020-09-01 13:51:51 +02:00
|
|
|
unset PRINTER_CFG
|
2020-10-28 12:08:02 +01:00
|
|
|
if [ -e $KLIPPER_SERVICE2 ]; then
|
|
|
|
|
status_msg "Locating printer.cfg via $KLIPPER_SERVICE2 ..."
|
2020-08-26 08:18:18 +02:00
|
|
|
#reads /etc/default/klipper and gets the default printer.cfg location
|
2020-09-01 13:51:51 +02:00
|
|
|
KLIPPY_ARGS_LINE="$(grep "KLIPPY_ARGS=" /etc/default/klipper)"
|
|
|
|
|
KLIPPY_ARGS_COUNT="$(grep -o " " <<< "$KLIPPY_ARGS_LINE" | wc -l)"
|
|
|
|
|
i=1
|
|
|
|
|
PRINTER_CFG=$(while [ "$i" != "$KLIPPY_ARGS_COUNT" ]; do grep -E "(\/[A-Za-z0-9\_-]+)+\/printer\.cfg" /etc/default/klipper | cut -d" " -f"$i"; i=$(( $i + 1 )); done | grep "printer.cfg")
|
2020-09-01 14:19:36 +02:00
|
|
|
ok_msg "printer.cfg location: '$PRINTER_CFG'"
|
2020-10-28 12:08:02 +01:00
|
|
|
elif [ -e $KLIPPER_SERVICE3 ]; then
|
2020-11-13 20:48:57 +01:00
|
|
|
status_msg "Locating printer.cfg via $KLIPPER_SERVICE3 ..."
|
2020-10-28 12:08:02 +01:00
|
|
|
#reads /etc/systemd/system/klipper.service and gets the default printer.cfg location
|
|
|
|
|
KLIPPY_ARGS_LINE="$(grep "ExecStart=" /etc/systemd/system/klipper.service)"
|
|
|
|
|
KLIPPY_ARGS_COUNT="$(grep -o " " <<< "$KLIPPY_ARGS_LINE" | wc -l)"
|
|
|
|
|
i=1
|
|
|
|
|
PRINTER_CFG=$(while [ "$i" != "$KLIPPY_ARGS_COUNT" ]; do grep -E "(\/[A-Za-z0-9\_-]+)+\/printer\.cfg" /etc/systemd/system/klipper.service | cut -d" " -f"$i"; i=$(( $i + 1 )); done | grep "printer.cfg")
|
|
|
|
|
ok_msg "printer.cfg location: '$PRINTER_CFG'"
|
2020-08-26 08:18:18 +02:00
|
|
|
else
|
|
|
|
|
PRINTER_CFG=""
|
2020-10-28 12:08:02 +01:00
|
|
|
warn_msg "Can't read printer.cfg location!"
|
2020-08-26 08:18:18 +02:00
|
|
|
fi
|
|
|
|
|
}
|
|
|
|
|
|
2020-07-13 16:59:40 +02:00
|
|
|
source_ini(){
|
2020-10-10 01:22:08 +02:00
|
|
|
source ${SRCDIR}/kiauh/kiauh.ini
|
2020-07-13 16:59:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
start_klipper(){
|
2020-09-17 19:31:33 +02:00
|
|
|
status_msg "Starting Klipper Service ..."
|
2020-09-18 08:58:46 +02:00
|
|
|
sudo systemctl start klipper && ok_msg "Klipper Service started!"
|
2020-07-13 16:59:40 +02:00
|
|
|
}
|
2020-07-13 21:08:31 +02:00
|
|
|
|
2020-07-13 16:59:40 +02:00
|
|
|
stop_klipper(){
|
2020-09-17 19:31:33 +02:00
|
|
|
status_msg "Stopping Klipper Service ..."
|
2020-09-18 08:58:46 +02:00
|
|
|
sudo systemctl stop klipper && ok_msg "Klipper Service stopped!"
|
2020-07-13 16:59:40 +02:00
|
|
|
}
|
|
|
|
|
|
2020-07-13 21:08:31 +02:00
|
|
|
restart_klipper(){
|
2020-09-17 19:31:33 +02:00
|
|
|
status_msg "Restarting Klipper Service ..."
|
2020-09-18 08:58:46 +02:00
|
|
|
sudo systemctl restart klipper && ok_msg "Klipper Service restarted!"
|
2020-07-13 21:08:31 +02:00
|
|
|
}
|
|
|
|
|
|
2020-09-14 22:54:01 +02:00
|
|
|
start_dwc(){
|
|
|
|
|
status_msg "Starting DWC-for-Klipper-Socket Service ..."
|
2020-09-18 08:58:46 +02:00
|
|
|
sudo systemctl start dwc && ok_msg "DWC-for-Klipper-Socket Service started!"
|
2020-09-14 22:54:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
stop_dwc(){
|
|
|
|
|
status_msg "Stopping DWC-for-Klipper-Socket Service ..."
|
2020-09-18 08:58:46 +02:00
|
|
|
sudo systemctl stop dwc && ok_msg "DWC-for-Klipper-Socket Service stopped!"
|
2020-09-14 22:54:01 +02:00
|
|
|
}
|
|
|
|
|
|
2020-07-13 16:59:40 +02:00
|
|
|
start_moonraker(){
|
2020-09-17 19:31:33 +02:00
|
|
|
status_msg "Starting Moonraker Service ..."
|
2020-11-19 13:47:26 +01:00
|
|
|
sudo systemctl start moonraker && ok_msg "Moonraker Service started!"
|
2020-07-13 16:59:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
stop_moonraker(){
|
2020-09-17 19:31:33 +02:00
|
|
|
status_msg "Stopping Moonraker Service ..."
|
2020-09-18 08:58:46 +02:00
|
|
|
sudo systemctl stop moonraker && ok_msg "Moonraker Service stopped!"
|
2020-07-13 16:59:40 +02:00
|
|
|
}
|
|
|
|
|
|
2020-07-13 21:08:31 +02:00
|
|
|
restart_moonraker(){
|
2020-09-17 19:31:33 +02:00
|
|
|
status_msg "Restarting Moonraker Service ..."
|
2020-09-18 08:58:46 +02:00
|
|
|
sudo systemctl restart moonraker && ok_msg "Moonraker Service restarted!"
|
2020-07-13 21:08:31 +02:00
|
|
|
}
|
|
|
|
|
|
2020-07-15 18:57:46 +02:00
|
|
|
start_octoprint(){
|
2020-09-18 08:58:46 +02:00
|
|
|
status_msg "Starting OctoPrint Service ..."
|
|
|
|
|
sudo systemctl start octoprint && ok_msg "OctoPrint Service started!"
|
2020-07-15 18:57:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
stop_octoprint(){
|
2020-09-18 08:58:46 +02:00
|
|
|
status_msg "Stopping OctoPrint Service ..."
|
|
|
|
|
sudo systemctl stop octoprint && ok_msg "OctoPrint Service stopped!"
|
2020-07-15 18:57:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
restart_octoprint(){
|
2020-09-18 08:58:46 +02:00
|
|
|
status_msg "Restarting OctoPrint Service ..."
|
|
|
|
|
sudo systemctl restart octoprint && ok_msg "OctoPrint Service restarted!"
|
2020-07-15 18:57:46 +02:00
|
|
|
}
|
|
|
|
|
|
2020-08-22 19:14:11 +02:00
|
|
|
enable_octoprint_service(){
|
|
|
|
|
if [[ -f $OCTOPRINT_SERVICE1 && -f $OCTOPRINT_SERVICE2 ]]; then
|
|
|
|
|
status_msg "OctoPrint Service is disabled! Enabling now ..."
|
|
|
|
|
sudo systemctl enable octoprint -q && sudo systemctl start octoprint
|
|
|
|
|
fi
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
disable_octoprint(){
|
|
|
|
|
if [ "$DISABLE_OPRINT" = "true" ]; then
|
|
|
|
|
disable_octoprint_service
|
|
|
|
|
fi
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
disable_octoprint_service(){
|
|
|
|
|
if [[ -f $OCTOPRINT_SERVICE1 && -f $OCTOPRINT_SERVICE2 ]]; then
|
|
|
|
|
status_msg "OctoPrint Service is enabled! Disabling now ..."
|
|
|
|
|
sudo systemctl stop octoprint && sudo systemctl disable octoprint -q
|
|
|
|
|
fi
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
toggle_octoprint_service(){
|
|
|
|
|
if [[ -f $OCTOPRINT_SERVICE1 && -f $OCTOPRINT_SERVICE2 ]]; then
|
|
|
|
|
if systemctl is-enabled octoprint.service -q; then
|
|
|
|
|
disable_octoprint_service
|
|
|
|
|
sleep 2
|
|
|
|
|
CONFIRM_MSG=" OctoPrint Service is now >>> DISABLED <<< !"
|
|
|
|
|
else
|
|
|
|
|
enable_octoprint_service
|
|
|
|
|
sleep 2
|
|
|
|
|
CONFIRM_MSG=" OctoPrint Service is now >>> ENABLED <<< !"
|
|
|
|
|
fi
|
|
|
|
|
else
|
|
|
|
|
ERROR_MSG=" You cannot activate a service that does not exist!"
|
|
|
|
|
fi
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
read_octoprint_service_status(){
|
|
|
|
|
if ! systemctl is-enabled octoprint.service -q &>/dev/null; then
|
|
|
|
|
OPRINT_SERVICE_STATUS="${green}[Enable]${default} OctoPrint Service "
|
|
|
|
|
else
|
|
|
|
|
OPRINT_SERVICE_STATUS="${red}[Disable]${default} OctoPrint Service "
|
|
|
|
|
fi
|
|
|
|
|
}
|
|
|
|
|
|
2020-11-27 13:44:06 +00:00
|
|
|
start_klipperscreen(){
|
|
|
|
|
status_msg "Starting KlipperScreen Service ..."
|
|
|
|
|
sudo systemctl start KlipperScreen && ok_msg "KlipperScreen Service started!"
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
stop_klipperscreen(){
|
|
|
|
|
status_msg "Stopping KlipperScreen Service ..."
|
|
|
|
|
sudo systemctl stop KlipperScreen && ok_msg "KlipperScreen Service stopped!"
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
restart_klipperscreen(){
|
|
|
|
|
status_msg "Restarting KlipperScreen Service ..."
|
|
|
|
|
sudo systemctl restart KlipperScreen && ok_msg "KlipperScreen Service restarted!"
|
|
|
|
|
}
|
|
|
|
|
|
2020-07-19 22:38:21 +02:00
|
|
|
restart_nginx(){
|
2020-11-19 13:47:26 +01:00
|
|
|
if [ "$(systemctl list-units --full -all -t service --no-legend | grep -F "nginx.service")" ]; then
|
2020-07-19 22:38:21 +02:00
|
|
|
status_msg "Restarting Nginx Service ..."
|
2020-11-19 13:47:26 +01:00
|
|
|
sudo systemctl restart nginx && ok_msg "Nginx Service restarted!"
|
2020-07-19 22:38:21 +02:00
|
|
|
fi
|
|
|
|
|
}
|
|
|
|
|
|
2020-07-23 10:20:14 +02:00
|
|
|
dependency_check(){
|
2020-08-22 18:23:41 +02:00
|
|
|
status_msg "Checking for the following dependencies:"
|
2020-07-23 10:20:14 +02:00
|
|
|
#check if package is installed, if not write name into array
|
|
|
|
|
for pkg in "${dep[@]}"
|
2020-07-13 16:59:40 +02:00
|
|
|
do
|
2020-08-22 18:23:41 +02:00
|
|
|
echo -e "${cyan}● $pkg ${default}"
|
2020-07-23 10:20:14 +02:00
|
|
|
if [[ ! $(dpkg-query -f'${Status}' --show $pkg 2>/dev/null) = *\ installed ]]; then
|
|
|
|
|
inst+=($pkg)
|
|
|
|
|
fi
|
2020-07-13 16:59:40 +02:00
|
|
|
done
|
2020-07-23 10:20:14 +02:00
|
|
|
#if array is not empty, install packages from array elements
|
|
|
|
|
if [ "${#inst[@]}" != "0" ]; then
|
|
|
|
|
status_msg "Installing the following dependencies:"
|
|
|
|
|
for element in ${inst[@]}
|
|
|
|
|
do
|
|
|
|
|
echo -e "${cyan}● $element ${default}"
|
|
|
|
|
done
|
|
|
|
|
echo
|
|
|
|
|
sudo apt-get install ${inst[@]} -y
|
|
|
|
|
ok_msg "Dependencies installed!"
|
|
|
|
|
#clearing the array
|
|
|
|
|
unset inst
|
|
|
|
|
else
|
|
|
|
|
ok_msg "Dependencies already met! Continue..."
|
2020-07-13 16:59:40 +02:00
|
|
|
fi
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
print_error(){
|
|
|
|
|
for data in "${data_arr[@]}"
|
|
|
|
|
do
|
|
|
|
|
if [ ! -e $data ]; then
|
|
|
|
|
data_count+=(0)
|
|
|
|
|
else
|
|
|
|
|
data_count+=(1)
|
|
|
|
|
fi
|
|
|
|
|
done
|
|
|
|
|
sum=$(IFS=+; echo "$((${data_count[*]}))")
|
|
|
|
|
if [ $sum -eq 0 ]; then
|
2020-08-20 17:38:24 +02:00
|
|
|
ERROR_MSG="Looks like $1 was already removed!\n Skipping..."
|
2020-07-13 16:59:40 +02:00
|
|
|
else
|
|
|
|
|
ERROR_MSG=""
|
|
|
|
|
fi
|
|
|
|
|
}
|
|
|
|
|
|
2020-10-29 18:27:22 +01:00
|
|
|
setup_gcode_shell_command(){
|
2020-08-26 08:18:59 +02:00
|
|
|
echo
|
|
|
|
|
top_border
|
2020-10-29 18:27:22 +01:00
|
|
|
echo -e "| You are about to install the G-Code Shell Command |"
|
|
|
|
|
echo -e "| extension. Please make sure to read the instructions |"
|
|
|
|
|
echo -e "| before you continue and remember that potential risks |"
|
|
|
|
|
echo -e "| can be involved after installing this extension! |"
|
|
|
|
|
blank_line
|
|
|
|
|
echo -e "| ${red}You accept that you are doing this on your own risk!${default} |"
|
2020-08-26 08:18:59 +02:00
|
|
|
bottom_border
|
|
|
|
|
while true; do
|
|
|
|
|
read -p "${cyan}###### Do you want to continue? (Y/n):${default} " yn
|
|
|
|
|
case "$yn" in
|
|
|
|
|
Y|y|Yes|yes|"")
|
2020-10-29 18:27:22 +01:00
|
|
|
if [ -d $KLIPPER_DIR/klippy/extras ]; then
|
|
|
|
|
status_msg "Installing gcode shell command extension ..."
|
|
|
|
|
status_msg "Copy gcode_shell_command.py to '$KLIPPER_DIR/klippy/extras' ..."
|
|
|
|
|
if [ -f $KLIPPER_DIR/klippy/extras/gcode_shell_command.py ]; then
|
|
|
|
|
warn_msg "There is already a file named 'gcode_shell_command.py'"
|
|
|
|
|
warn_msg "in the destination location!"
|
|
|
|
|
while true; do
|
|
|
|
|
read -p "${cyan}###### Do you want to overwrite it? (Y/n):${default} " yn
|
|
|
|
|
case "$yn" in
|
|
|
|
|
Y|y|Yes|yes|"")
|
|
|
|
|
rm -f $KLIPPER_DIR/klippy/extras/gcode_shell_command.py
|
|
|
|
|
install_gcode_shell_command
|
|
|
|
|
break;;
|
|
|
|
|
N|n|No|no)
|
|
|
|
|
break;;
|
|
|
|
|
esac
|
|
|
|
|
done
|
|
|
|
|
else
|
|
|
|
|
install_gcode_shell_command
|
2020-08-26 08:18:59 +02:00
|
|
|
fi
|
2020-10-29 18:27:22 +01:00
|
|
|
else
|
|
|
|
|
ERROR_MSG="Folder ~/klipper/klippy/extras not found!"
|
2020-08-26 08:18:59 +02:00
|
|
|
fi
|
|
|
|
|
break;;
|
|
|
|
|
N|n|No|no)
|
|
|
|
|
break;;
|
2020-09-11 14:12:49 +02:00
|
|
|
*)
|
|
|
|
|
print_unkown_cmd
|
|
|
|
|
print_msg && clear_msg;;
|
2020-08-26 08:18:59 +02:00
|
|
|
esac
|
|
|
|
|
done
|
|
|
|
|
}
|
|
|
|
|
|
2020-10-29 18:27:22 +01:00
|
|
|
install_gcode_shell_command(){
|
|
|
|
|
stop_klipper
|
2020-10-29 22:28:24 +01:00
|
|
|
status_msg "Copy 'gcode_shell_command.py' to $KLIPPER_DIR/klippy/extras"
|
2020-10-29 18:27:22 +01:00
|
|
|
cp ${HOME}/kiauh/resources/gcode_shell_command.py $KLIPPER_DIR/klippy/extras
|
2020-10-29 22:28:24 +01:00
|
|
|
echo
|
|
|
|
|
while true; do
|
|
|
|
|
read -p "${cyan}###### Do you want to create the example shell command? (Y/n):${default} " yn
|
|
|
|
|
case "$yn" in
|
|
|
|
|
Y|y|Yes|yes|"")
|
|
|
|
|
ADD_SHELL_CMD_MACRO="true"
|
|
|
|
|
status_msg "Creating example macro ..."
|
|
|
|
|
locate_printer_cfg
|
|
|
|
|
read_printer_cfg "gcode_shell_command"
|
|
|
|
|
write_printer_cfg
|
|
|
|
|
ok_msg "Example macro created!"
|
|
|
|
|
break;;
|
|
|
|
|
N|n|No|no)
|
|
|
|
|
break;;
|
|
|
|
|
esac
|
|
|
|
|
done
|
2020-10-29 18:27:22 +01:00
|
|
|
ok_msg "Shell command extension installed!"
|
|
|
|
|
restart_klipper
|
|
|
|
|
}
|
|
|
|
|
|
2020-11-13 20:48:57 +01:00
|
|
|
create_minimal_cfg(){
|
2020-11-20 11:18:29 +01:00
|
|
|
#create a minimal default config
|
2020-11-13 20:48:57 +01:00
|
|
|
if [ "$SEL_DEF_CFG" = "true" ]; then
|
|
|
|
|
cat <<- EOF >> $PRINTER_CFG
|
|
|
|
|
[mcu]
|
|
|
|
|
serial: </dev/serial/by-id/your-mcu>
|
|
|
|
|
|
|
|
|
|
[printer]
|
2020-11-20 11:18:29 +01:00
|
|
|
kinematics: none
|
|
|
|
|
max_velocity: 1
|
|
|
|
|
max_accel: 1
|
2020-11-13 20:48:57 +01:00
|
|
|
|
|
|
|
|
[virtual_sdcard]
|
|
|
|
|
path: ~/sdcard
|
|
|
|
|
|
|
|
|
|
[pause_resume]
|
|
|
|
|
[display_status]
|
|
|
|
|
EOF
|
|
|
|
|
fi
|
|
|
|
|
}
|
|
|
|
|
|
2020-10-29 22:28:24 +01:00
|
|
|
read_printer_cfg(){
|
2020-12-20 19:25:13 +01:00
|
|
|
KIAUH_CFG="$(dirname $PRINTER_CFG)/kiauh.cfg"
|
2020-11-13 20:48:57 +01:00
|
|
|
[ ! -f $KIAUH_CFG ] && KIAUH_CFG_FOUND="false" || KIAUH_CFG_FOUND="true"
|
|
|
|
|
if [ -f $PRINTER_CFG ]; then
|
|
|
|
|
if [ "$1" = "moonraker" ]; then
|
|
|
|
|
[ ! "$(grep '^\[virtual_sdcard\]$' $PRINTER_CFG)" ] && VSD="false" && EDIT_CFG="true"
|
|
|
|
|
[ ! "$(grep '^\[pause_resume\]$' $PRINTER_CFG)" ] && PAUSE_RESUME="false" && EDIT_CFG="true"
|
|
|
|
|
[ ! "$(grep '^\[display_status\]$' $PRINTER_CFG)" ] && DISPLAY_STATUS="false" && EDIT_CFG="true"
|
|
|
|
|
elif [ "$1" = "mainsail" ] || [ "$1" = "fluidd" ]; then
|
|
|
|
|
[ ! "$(grep '^\[include webui_macros\.cfg\]$' $PRINTER_CFG)" ] && WEBUI_MACROS="false" && EDIT_CFG="true"
|
|
|
|
|
elif [ "$1" = "dwc2" ]; then
|
|
|
|
|
[ ! "$(grep '^\[virtual_sdcard\]$' $PRINTER_CFG)" ] && VSD="false" && EDIT_CFG="true"
|
|
|
|
|
fi
|
2020-08-26 08:18:59 +02:00
|
|
|
fi
|
2020-10-29 22:28:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
write_printer_cfg(){
|
2020-11-13 20:48:57 +01:00
|
|
|
#backup printer.cfg if edits will be written
|
|
|
|
|
[ "$EDIT_CFG" = "true" ] && backup_printer_cfg
|
2020-10-29 22:28:24 +01:00
|
|
|
#create kiauh.cfg if its needed and doesn't exist
|
2020-11-13 20:48:57 +01:00
|
|
|
if [ "$KIAUH_CFG_FOUND" = "false" ] && [ "$EDIT_CFG" = "true" ]; then
|
2020-10-29 22:28:24 +01:00
|
|
|
status_msg "Creating kiauh.cfg ..."
|
2020-10-30 12:50:51 +01:00
|
|
|
echo -e "##### AUTOCREATED BY KIAUH #####" > $KIAUH_CFG
|
2020-08-26 08:18:59 +02:00
|
|
|
fi
|
2020-10-29 22:28:24 +01:00
|
|
|
#write each entry to kiauh.cfg if it doesn't exist
|
2020-11-13 20:48:57 +01:00
|
|
|
#Moonraker/DWC2 related config options
|
2020-10-29 22:28:24 +01:00
|
|
|
if [ "$VSD" = "false" ] && [[ ! $(grep '^\[virtual_sdcard\]$' $KIAUH_CFG) ]]; then
|
|
|
|
|
echo -e "\n[virtual_sdcard]\npath: ~/sdcard" >> $KIAUH_CFG
|
|
|
|
|
fi
|
|
|
|
|
if [ "$PAUSE_RESUME" = "false" ] && [[ ! $(grep '^\[pause_resume]$' $KIAUH_CFG) ]]; then
|
|
|
|
|
echo -e "\n[pause_resume]" >> $KIAUH_CFG
|
|
|
|
|
fi
|
|
|
|
|
if [ "$DISPLAY_STATUS" = "false" ] && [[ ! $(grep '^\[display_status]$' $KIAUH_CFG) ]]; then
|
|
|
|
|
echo -e "\n[display_status]" >> $KIAUH_CFG
|
|
|
|
|
fi
|
|
|
|
|
#Klipper webui related config options
|
|
|
|
|
if [ "$WEBUI_MACROS" = "false" ] && [ "$ADD_WEBUI_MACROS" = "true" ] && [[ ! $(grep '^\[include webui_macros.cfg]$' $KIAUH_CFG) ]]; then
|
|
|
|
|
echo -e "\n[include webui_macros.cfg]" >> $KIAUH_CFG
|
|
|
|
|
fi
|
|
|
|
|
#G-Code Shell Command extension related config options
|
|
|
|
|
if [ "$ADD_SHELL_CMD_MACRO" = "true" ] && [[ ! $(grep '^\[gcode_shell_command hello_world]$' $KIAUH_CFG) ]]; then
|
|
|
|
|
cat <<-EOF >> $KIAUH_CFG
|
|
|
|
|
[gcode_shell_command hello_world]
|
|
|
|
|
command: echo hello world
|
|
|
|
|
timeout: 2.
|
|
|
|
|
verbose: True
|
|
|
|
|
[gcode_macro HELLO_WORLD]
|
|
|
|
|
gcode:
|
|
|
|
|
RUN_SHELL_COMMAND CMD=hello_world
|
|
|
|
|
EOF
|
|
|
|
|
fi
|
|
|
|
|
#including the kiauh.cfg into printer.cfg if not already done
|
2020-11-13 20:48:57 +01:00
|
|
|
if [ ! "$(grep '^\[include kiauh\.cfg\]$' $PRINTER_CFG)" ] && [ "$EDIT_CFG" = "true" ]; then
|
2020-10-29 22:28:24 +01:00
|
|
|
status_msg "Writing [include kiauh.cfg] to printer.cfg ..."
|
2020-11-13 20:48:57 +01:00
|
|
|
sed -i '1 i ##### AUTOCREATED BY KIAUH #####\n[include kiauh.cfg]' $PRINTER_CFG
|
2020-08-26 08:18:59 +02:00
|
|
|
fi
|
2020-10-29 22:28:24 +01:00
|
|
|
ok_msg "Done!"
|
2020-10-13 11:41:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
init_ini(){
|
2020-10-13 11:55:01 +02:00
|
|
|
if [ ! -f $INI_FILE ]; then
|
|
|
|
|
echo -e "#don't edit this file if you don't know what you are doing...\c" > $INI_FILE
|
|
|
|
|
fi
|
2020-10-13 11:41:57 +02:00
|
|
|
if [ ! $(grep -E "^backup_before_update=." $INI_FILE) ]; then
|
|
|
|
|
echo -e "\nbackup_before_update=false\c" >> $INI_FILE
|
|
|
|
|
fi
|
|
|
|
|
if [ ! $(grep -E "^previous_origin_state=[[:alnum:]]" $INI_FILE) ]; then
|
|
|
|
|
echo -e "\nprevious_origin_state=0\c" >> $INI_FILE
|
|
|
|
|
fi
|
|
|
|
|
if [ ! $(grep -E "^previous_smoothing_state=[[:alnum:]]" $INI_FILE) ]; then
|
|
|
|
|
echo -e "\nprevious_smoothing_state=0\c" >> $INI_FILE
|
|
|
|
|
fi
|
|
|
|
|
if [ ! $(grep -E "^previous_shaping_state=[[:alnum:]]" $INI_FILE) ]; then
|
|
|
|
|
echo -e "\nprevious_shaping_state=0\c" >> $INI_FILE
|
|
|
|
|
fi
|
|
|
|
|
if [ ! $(grep -E "^logupload_accepted=." $INI_FILE) ]; then
|
|
|
|
|
echo -e "\nlogupload_accepted=false\c" >> $INI_FILE
|
|
|
|
|
fi
|
2020-11-27 13:44:06 +00:00
|
|
|
}
|