2023-10-28 21:38:26 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
############################################################################################################
|
|
|
|
############################################################################################################
|
|
|
|
|
|
|
|
# Angemeldeten Benutzer ermitteln
|
|
|
|
a_user=$(whoami)
|
|
|
|
|
|
|
|
mkdir -p /home/"$a_user"/.icons ; cp icons/* /home/"$a_user"/.icons/ ; mkdir -p /home/"$a_user"/.config/wg_nmcli
|
|
|
|
|
|
|
|
wait;
|
2023-10-29 10:27:12 +01:00
|
|
|
echo Wire-G wird installiert.
|
|
|
|
# abfrage ob benötigte pakete installiert sind, wenn nicht dann installiere automatisch die benötigten Pakete.
|
2023-10-28 21:38:26 +02:00
|
|
|
|
2023-10-29 10:27:12 +01:00
|
|
|
if grep -i 'mint\|debian\|ubuntu\|pop|' /etc/os-release > /dev/null 2>&1
|
2023-10-28 21:38:26 +02:00
|
|
|
then
|
2023-10-29 12:13:32 +01:00
|
|
|
if ! which yad > /dev/null ; then sudo apt install yad ; fi
|
|
|
|
if ! which notify-send > /dev/null ; then sudo apt install libnotify-bin ; fi
|
2023-10-29 10:58:59 +01:00
|
|
|
|
2023-10-29 10:27:12 +01:00
|
|
|
elif grep -i 'arch\|manjaro\|garuda\|endeavour|' /etc/os-release > /dev/null 2>&1
|
2023-10-28 21:38:26 +02:00
|
|
|
then
|
2023-10-29 12:13:32 +01:00
|
|
|
if ! which yad > /dev/null ; then sudo pacman -S yad ; fi
|
|
|
|
if ! which notify-send > /dev/null ; then sudo pacman -S libnotify ; fi
|
2023-10-29 10:27:12 +01:00
|
|
|
|
|
|
|
elif grep -i 'fedora' /etc/os-release > /dev/null 2>&1
|
2023-10-28 21:38:26 +02:00
|
|
|
then
|
2023-10-29 12:13:32 +01:00
|
|
|
if ! which yad > /dev/null ; then sudo dnf install yad ; fi
|
|
|
|
if ! which notify-send > /dev/null ; then sudo dnf install libnotify ; fi
|
2023-10-29 10:27:12 +01:00
|
|
|
|
|
|
|
elif grep -i 'suse' /etc/os-release > /dev/null 2>&1
|
2023-10-28 21:38:26 +02:00
|
|
|
then
|
|
|
|
clear
|
|
|
|
echo Achtung OpenSuse wird nicht offiziell unterstützt!
|
|
|
|
echo Sie können yad nachinstallieren und Wire-G dann verwenden,
|
|
|
|
echo oder den uninstaller ausführen um Wire-G zu entfernen
|
2023-10-29 10:27:12 +01:00
|
|
|
|
|
|
|
else
|
2023-10-28 21:38:26 +02:00
|
|
|
echo Ihr system konnte nicht ermittelt werden.
|
2023-10-29 10:40:50 +01:00
|
|
|
echo Bitte installieren sie yad und
|
|
|
|
echo eventuell libnotify noch auf iher Distro nach.
|
2023-10-28 21:38:26 +02:00
|
|
|
echo Wire-G ist dann auch für ihr System bereit.
|
2023-10-29 10:58:59 +01:00
|
|
|
|
2023-10-28 21:38:26 +02:00
|
|
|
fi
|
|
|
|
|
|
|
|
wait;
|
|
|
|
sudo mkdir -p /usr/share/icons/Arch-Symbole ; sudo cp icons/wg-vpn.png /usr/share/icons/Arch-Symbole/
|
|
|
|
wait;
|
|
|
|
sudo cp wire_g wg_stop /sbin/ ; sudo chmod +x /sbin/wire_g ; sudo chmod +x /sbin/wg_stop
|
|
|
|
wait; sudo cp Wire-G.desktop /usr/share/applications/
|
|
|
|
echo
|
|
|
|
echo "Installation erfolgreich!"
|
2023-10-28 22:45:53 +02:00
|
|
|
echo
|
2023-10-28 21:38:26 +02:00
|
|
|
read -n 1 -s -r -p "Zum Fenster schließen eine Taste drücken"
|
|
|
|
clear
|
|
|
|
|
|
|
|
############################################ ENDE #########################################################
|