diff --git a/README.md b/README.md index e4315ef..e7a95f2 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,6 @@ # Wire-G Wire-G eine GUI App für Linux Systeme in Bash mit yad. Einfaches Management von Wireguard Tunnel'n über nmcli (Networkmanager) mit einer grafischen Oberfläche. + +# Screenshots + diff --git a/installer1.0.5 b/installer1.0.5 index 0b4237e..3fafb48 100755 --- a/installer1.0.5 +++ b/installer1.0.5 @@ -15,17 +15,17 @@ echo Wire-G wird installiert. if grep -i 'mint\|debian\|ubuntu\|pop|' /etc/os-release > /dev/null 2>&1 then if ! which yad > /dev/null ; then sudo apt install yad - elif ! which notify-send ; then sudo apt install libnotify-bin ; fi - + elif ! which notify-send > /dev/null ; then sudo apt install libnotify-bin ; fi + elif grep -i 'arch\|manjaro\|garuda\|endeavour|' /etc/os-release > /dev/null 2>&1 then if ! which yad > /dev/null ; then sudo pacman -S yad - elif ! which notify-send ; then sudo pacman -S libnotify ; fi + elif ! which notify-send > /dev/null ; then sudo pacman -S libnotify ; fi elif grep -i 'fedora' /etc/os-release > /dev/null 2>&1 then if ! which yad > /dev/null ; then sudo dnf install yad - elif ! which notify-send ; then sudo dnf install libnotify + elif ! which notify-send > /dev/null ; then sudo dnf install libnotify ; fi elif grep -i 'suse' /etc/os-release > /dev/null 2>&1 then @@ -39,7 +39,7 @@ else echo Bitte installieren sie yad und echo eventuell libnotify noch auf iher Distro nach. echo Wire-G ist dann auch für ihr System bereit. - fi + fi wait;