diff --git a/archinstall/chrootinstall.sh b/archinstall/chrootinstall.sh index 40eddb0..407451b 100755 --- a/archinstall/chrootinstall.sh +++ b/archinstall/chrootinstall.sh @@ -199,6 +199,20 @@ case $tipoinstall in esac pacman -S $packages --noconfirm packages="" + + ##Imagen + opt=`dialog --stdout --checklist "Imagen" 0 0 6 1 "GIMP" off 2 "Inkscape" off 3 "Pinta" off` + + case $opt in + *1*) + packages="gimp";;& + *2*) + packages="$packages inkscape";;& + *3*) + packages="$packages pinta";;& + esac + pacman -S $packages --noconfirm + packages="" ##Fuentes del sistema opt=`dialog --stdout --checklist "Fuentes/Tipos de letra" 0 0 6 1 "noto-fonts (Muy recomendado)" on 2 "Microsoft Fonts" off 3 "Recopilatorio de fuentes de Google (mas de 300)" off`