#!/bin/bash arguments="$@" # get the $packages Array . include/packages.inc.sh # colors for colored output 8) RED="\e[31m" GREEN="\e[32m" YELLOW="\e[33m" ENDCOLOR="\e[0m" function message() { case $1 in warn) MESSAGE_TYPE="${YELLOW}WARN${ENDCOLOR}" ;; error) MESSAGE_TYPE="${RED}ERROR${ENDCOLOR}" ;; info|*) MESSAGE_TYPE="${GREEN}INFO${ENDCOLOR}" ;; esac if [ "$1" == "info" ] || [ "$1" == "warn" ] || [ "$1" == "error" ] then MESSAGE=$2 else MESSAGE=$1 fi echo -e "[${MESSAGE_TYPE}] $MESSAGE" } error () { message error "ERROR!!" exit 1 } ### if [ -z "$arguments" ] then package_categories="${!packages[@]}" else package_categories="$@" fi message warn "Do you want to install these categories?" message warn "${YELLOW}$package_categories${ENDCOLOR}" message warn "Type '${GREEN}yes${ENDCOLOR}' and hit [ENTER] to continue" read -p "=> " continue if [ "$continue" != "yes" ] then message error "Installation aborted." exit 1 fi message "Continue with installation..." # iterate through $packages for i in $package_categories do message "Packages category: ${YELLOW}${i}${ENDCOLOR}" message "Packages contained: " message "${GREEN}${packages[$i]}${ENDCOLOR}" # in case of a specific category, do special things case $i in nice) message warn "sudo dpkg --add-architecture i386" message warn "sudo apt update" ;; esac done