30 lines
1.1 KiB
Bash
Executable File
30 lines
1.1 KiB
Bash
Executable File
#!/bin/bash
|
|
########################################################
|
|
########################################################
|
|
# Wire-G App for simple management a Wireguard Tunnel ##
|
|
# Author: Désiré Werner Menrath ##
|
|
# Email: polunga40@unity-mail.de ##
|
|
# Translate German to English with LibreTranslate ##
|
|
# Translatefiles edit with Poedit ##
|
|
# Use without warranty! ##
|
|
########################################################
|
|
########################################################
|
|
|
|
a_user=$(whoami)
|
|
cd || exit
|
|
rm -f /home/"$a_user"/.icons/wg-active.png wg-stop.png wg-vpn.png wg-import.png wg-trash.png wg-info.png
|
|
wait;
|
|
rm -r /home/"$a_user"/.config/wg_nmcli
|
|
wait;
|
|
sudo rm /usr/share/icons/Arch-Symbole/wg-vpn.png
|
|
wait;
|
|
sudo rm /sbin/wire_g ; sudo rm /sbin/wg_stop
|
|
wait;
|
|
sudo rm /usr/share/applications/Wire-G.desktop ; sudo rm /usr/share/locale/de/LC_MESSAGES/wire-g.mo
|
|
echo
|
|
echo "deinstallation erfolgreich!"
|
|
echo
|
|
read -n 1 -s -r -p "Zum Fenster schließen eine Taste drücken"
|
|
clear
|
|
|