Wire-G/installer1.0.5

63 lines
2.7 KiB
Groff
Raw Normal View History

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-11-02 11:01:37 +01:00
if ! which yad > /dev/null ; then sudo apt install yad -y > /dev/null 2>&1 ; fi
echo yad wird installiert. Bitte warten...
2023-11-02 11:01:37 +01:00
if ! which notify-send > /dev/null ; then sudo apt install libnotify-bin -y > /dev/null 2>&1 ; fi
echo libnotify wird installiert. Bitte warten...
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-11-02 11:01:37 +01:00
if ! which yad > /dev/null ; then sudo pacman -S --noconfirm yad > /dev/null 2>&1 ; fi
echo yad wird installiert. Bitte warten...
2023-11-02 11:01:37 +01:00
if ! which notify-send > /dev/null ; then sudo pacman -S --noconfirm libnotify > /dev/null 2>&1 ; fi
echo libnotify wird installiert. Bitte warten...
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-11-02 11:01:37 +01:00
if ! which yad > /dev/null ; then sudo dnf install yad > /dev/null 2>&1 ; fi
echo yad wird installiert. Bitte warten...
2023-11-02 11:01:37 +01:00
if ! which notify-send > /dev/null ; then sudo dnf install libnotify > /dev/null 2>&1 ; fi
echo libnotify wird installiert. Bitte warten...
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
2023-11-01 21:05:18 +01:00
sudo mv languages/de/wire-g.mo /usr/share/locale/de/LC_MESSAGES/wire-g.mo
2023-10-28 21:38:26 +02:00
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
2023-11-01 21:05:18 +01:00
############################################ END ##########################################################