From a543d00d476ec80fb9458cabf22e9c9bc82654ac Mon Sep 17 00:00:00 2001 From: stev Date: Fri, 18 Mar 2022 21:08:31 -0400 Subject: [PATCH] fedora dependency script --- fdeps.sh | 19 +++++++++++++++++++ init.sh | 3 +++ 2 files changed, 22 insertions(+) create mode 100755 fdeps.sh diff --git a/fdeps.sh b/fdeps.sh new file mode 100755 index 0000000..392f898 --- /dev/null +++ b/fdeps.sh @@ -0,0 +1,19 @@ +#!/bin/bash +#These are the programs I expect to find on any install + +echo "installing base dependencies" +sudo dnf install \ + git \ + stow \ + etckeeper \ + tmux \ + zsh \ + vim \ + powerline\ + htop \ + mc \ + curl \ + fzf \ + bat \ + duf + diff --git a/init.sh b/init.sh index 52f5c5f..1ad666c 100755 --- a/init.sh +++ b/init.sh @@ -11,6 +11,9 @@ case $answer in a) bash adeps.sh ;; + f) + bash fdeps.sh + ;; *) echo "Skipping installation of dependencies!" ;;