This repository has been archived on 2025-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
xlock/uninstall

13 lines
321 B
Bash
Executable File

#!/bin/bash
if [ ! -f /usr/bin/xlock ]; then
echo "xLock is not currently installed."
exit
fi
read -p "Are you shure you want to uninstall xLock? (Enter 'yes' or 'no'): " confirm
if [ $confirm = "yes" ]; then
xlock
sudo rm /usr/bin/xlock -f
rm ~/.xlockpw
echo -e "\e[93mxLock was successfully uninstalled\e[0m"
fi