#!/bin/bash

if [[ $EUID -ne 0 ]]; then
    echo "This script should be executed as root user"
    exit 1
fi

rm -f -r /usr/lib/xdman

rm -f /usr/bin/xdman

rm -f /usr/share/applications/xdman.desktop

echo "XDM has been successfully removed from Your computer"
