From 09c46a6bb9512a8405c2e01251ee5ed46c0843ab Mon Sep 17 00:00:00 2001 From: Stephan Raabe Date: Tue, 21 Nov 2023 07:04:26 +0100 Subject: [PATCH] Updates --- .install/{rsync.sh => required.sh} | 5 +++-- install.sh | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) rename .install/{rsync.sh => required.sh} (56%) diff --git a/.install/rsync.sh b/.install/required.sh similarity index 56% rename from .install/rsync.sh rename to .install/required.sh index e4c3584..a0414b5 100644 --- a/.install/rsync.sh +++ b/.install/required.sh @@ -2,5 +2,6 @@ # Check that rsync is installed # ------------------------------------------------------ -echo "Checking that rsync is installed..." -_installPackagesPacman "rsync"; \ No newline at end of file +echo "Checking that rsync and gum is installed..." +_installPackagesPacman "rsync"; +_installPackagesPacman "gum"; \ No newline at end of file diff --git a/install.sh b/install.sh index b0f18bb..0e4587f 100755 --- a/install.sh +++ b/install.sh @@ -28,8 +28,8 @@ echo "" echo "This script will guide you through the installation process of my dotfiles." echo "" source .install/library.sh +source .install/required.sh source .install/confirm-start.sh -source .install/rsync.sh source .install/backup.sh source .install/preparation.sh source .install/profile.sh