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!" ;;