mirror of
https://github.com/MeexReay/bRAC.git
synced 2025-06-24 02:42:57 +03:00
17 lines
405 B
Bash
Executable File
17 lines
405 B
Bash
Executable File
#!/bin/bash
|
|
|
|
echo "this script is deprecated, fix it yourself if you wanna to"; exit
|
|
|
|
if [[ $EUID -ne 0 ]]; then
|
|
echo "This script must be run as root"
|
|
exit 1
|
|
fi
|
|
|
|
getent passwd | while IFS=: read -r name password uid gid gecos home shell; do
|
|
rm -rf $home/.config/bRAC;
|
|
done
|
|
|
|
rm -f /bin/bRAC
|
|
rm -f /usr/share/pixmaps/ru.themixray.bRAC.png
|
|
rm -f /usr/share/applications/ru.themixray.bRAC.desktop
|