enable/disable status

This commit is contained in:
justmarvinn 2025-07-14 13:04:42 +02:00
parent cf7467169d
commit 3b8c69561e

View File

@ -54,6 +54,12 @@ status() {
echo "$APP_NAME is not running"
return 3
fi
if is_enabled; then
echo "Endless restart enabled"
else
echo "Endless restart disabled"
fi
}
enable() {