fedora dependency script

This commit is contained in:
Stefen Auris 2022-03-18 21:08:31 -04:00
parent 51a25e9acc
commit a543d00d47
2 changed files with 22 additions and 0 deletions

19
fdeps.sh Executable file
View file

@ -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

View file

@ -11,6 +11,9 @@ case $answer in
a) a)
bash adeps.sh bash adeps.sh
;; ;;
f)
bash fdeps.sh
;;
*) *)
echo "Skipping installation of dependencies!" echo "Skipping installation of dependencies!"
;; ;;