#!/bin/bash

echo "---------------------------------------------"
echo "Starting uninstallation of the Nullculator..."
echo "---------------------------------------------"

if [ "$EUID" -ne 0 ]; then
    echo "Administration privileges required for uninstallation."
    exec sudo "$0" "$@"
fi

apt-get remove -y nullculator

echo "------------------------------------------------"
echo "Uninstallation of the Nullculator was successful"
echo "------------------------------------------------"
