improved info messages

This commit is contained in:
justmarvinn 2025-07-14 15:14:51 +02:00
parent 3b8c69561e
commit 93d92e34ff

View File

@ -64,12 +64,12 @@ status() {
enable() { enable() {
touch "$ENABLED_FILE" touch "$ENABLED_FILE"
echo "Enabled $APP_NAME to start at boot" echo "Endless restart enabled"
} }
disable() { disable() {
rm -f "$ENABLED_FILE" rm -f "$ENABLED_FILE"
echo "Disabled $APP_NAME from starting at boot" echo "Endless restart disabled"
} }
mkdir -p $(dirname "$PID_FILE") mkdir -p $(dirname "$PID_FILE")