#!/bin/bash
APP_DIR="/usr/share/super-linux-utility-advanced"
EXECUTABLE="$APP_DIR/super_linux_utility"
if [ ! -d "$APP_DIR" ]; then echo "Error: Application directory not found: $APP_DIR" >&2; exit 1; fi
if [ ! -f "$EXECUTABLE" ]; then echo "Error: Executable not found: $EXECUTABLE" >&2; exit 1; fi
cd "$APP_DIR" || exit 1
exec "$EXECUTABLE" "$@"
