diff options
-rwxr-xr-x | install.sh | 14 |
1 files changed, 13 insertions, 1 deletions
@@ -77,7 +77,6 @@ echo "[AUR] Install some common app..." #pikaur -S --noconfirm --needed waterfox-bin #pikaur -S --noconfirm --needed grv #pikaur -S --noconfirm --needed friendly-find -#pikaur -S --noconfirm --needed nerd-fonts-complete # install needed package for profile @@ -250,3 +249,16 @@ echo "Install vdirsyncer..." echo "Hey install is done!" echo "Check arch wiki for driver installation." echo "=> https://wiki.archlinux.org/index.php/Xorg#Driver_installation" + +# long install + +echo "There is some package who are too long to install." +read -r -p "Would you like to install it? [y/N] " response +if [[ "$response" =~ ^([yY][eE][sS]|[yY])+$ ]] +then + echo "Starting long install..." + #pikaur -S --noconfirm --needed nerd-fonts-complete +else + echo "Long install canceled, if you want you can relaunch this script" + exit +fi |