From 0a44795e0d60033c9fb7f1e56f39025191598756 Mon Sep 17 00:00:00 2001 From: punix Date: Sun, 29 Oct 2023 12:13:32 +0100 Subject: [PATCH] installer korrektur --- installer1.0.5 | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/installer1.0.5 b/installer1.0.5 index 3fafb48..cbc1458 100755 --- a/installer1.0.5 +++ b/installer1.0.5 @@ -14,18 +14,18 @@ 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 > /dev/null ; then sudo apt install libnotify-bin ; fi + if ! which yad > /dev/null ; then sudo apt install yad ; fi + if ! 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 > /dev/null ; then sudo pacman -S libnotify ; fi + if ! which yad > /dev/null ; then sudo pacman -S yad ; fi + if ! 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 > /dev/null ; then sudo dnf install libnotify ; fi + if ! which yad > /dev/null ; then sudo dnf install yad ; fi + if ! which notify-send > /dev/null ; then sudo dnf install libnotify ; fi elif grep -i 'suse' /etc/os-release > /dev/null 2>&1 then