diff --git a/install-scripts/ags.sh b/install-scripts/ags.sh index 9c0c10c..44b9edf 100755 --- a/install-scripts/ags.sh +++ b/install-scripts/ags.sh @@ -3,15 +3,6 @@ # Aylur's GTK Shell v 1.9.0 # # for desktop overview -# Check if AGS is installed -if command -v ags &>/dev/null; then - AGS_VERSION=$(ags -v | awk '{print $NF}') - if [[ "$AGS_VERSION" == "1.9.0" ]]; then - printf "${INFO} ${MAGENTA}Aylur's GTK Shell v1.9.0${RESET} is already installed. Skipping installation." - exit 0 - fi -fi - if [[ $USE_PRESET = [Yy] ]]; then source ./preset.sh fi @@ -48,7 +39,15 @@ source "$(dirname "$(readlink -f "$0")")/Global_functions.sh" LOG="Install-Logs/install-$(date +%d-%H%M%S)_ags.log" MLOG="install-$(date +%d-%H%M%S)_ags2.log" -printf "\n%.0s" {1..1} +# Check if AGS is installed +if command -v ags &>/dev/null; then + AGS_VERSION=$(ags -v | awk '{print $NF}') + if [[ "$AGS_VERSION" == "1.9.0" ]]; then + printf "${INFO} ${MAGENTA}Aylur's GTK Shell v1.9.0${RESET} is already installed. Skipping installation." + printf "\n%.0s" {1..2} + exit 0 + fi +fi # Installation of main components printf "\n%s - Installing ${SKY_BLUE}Aylur's GTK shell $ags_tag${RESET} Dependencies \n" "${NOTE}"