From acfc64974ca5b1a68366d26889ccaf9b14c1c783 Mon Sep 17 00:00:00 2001 From: StephenC Date: Mon, 2 Oct 2023 00:39:15 -0400 Subject: [PATCH 1/2] Update ddeps.sh fixed not installing nala duf included in default repos now --- ddeps.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ddeps.sh b/ddeps.sh index 012deac..e72e6fe 100755 --- a/ddeps.sh +++ b/ddeps.sh @@ -35,8 +35,9 @@ sudo apt-get -my install \ neofetch \ trash-cli \ bat \ - neovim - nala + neovim \ + nala \ + duf read -n1 -p $'Does this system need a ssh server?\n' REPLY if [[ $REPLY == [Yy] ]]; then @@ -50,5 +51,4 @@ read -n1 -p $'\nDoes this system have a GUI?\n' REPLY fi #This section installs software outside apt -dpkg_url https://github.com/muesli/duf/releases/download/v0.8.1/duf_0.8.1_linux_amd64.deb -dpkg_url https://github.com/dandavison/delta/releases/download/0.15.1/git-delta_0.15.1_amd64.deb || dpkg_url https://github.com/dandavison/delta/releases/download/0.15.1/git-delta-musl_0.15.1_amd64.deb +dpkg_url https://github.com/dandavison/delta/releases/download/0.15.1/git-delta_0.16.5_amd64.deb || dpkg_url https://github.com/dandavison/delta/releases/download/0.16.5/git-delta-musl_0.15.1_amd64.deb From 634d2f55c2a35605f1545c52a3fde843175e519a Mon Sep 17 00:00:00 2001 From: StephenC Date: Mon, 2 Oct 2023 00:40:23 -0400 Subject: [PATCH 2/2] Update init.sh added ddeps.sh as dependency install option --- init.sh | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/init.sh b/init.sh index 94c7177..8d48379 100755 --- a/init.sh +++ b/init.sh @@ -3,10 +3,10 @@ echo -n "Which Linux flavor will we be installing programs for? (u/o/a)"; read -r answer case $answer in u) - bash udeps.sh + bash udeps.sh ;; o) - bash odeps.sh + bash odeps.sh ;; a) bash adeps.sh @@ -14,6 +14,9 @@ case $answer in f) bash fdeps.sh ;; + d) + bash ddeps.sh + ;; *) echo "Skipping installation of dependencies!" ;;